mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
substs table fix: string spacing
This commit is contained in:
parent
a8a68b4148
commit
7ab5944536
1 changed files with 2 additions and 1 deletions
|
|
@ -382,7 +382,8 @@ module ByteCode = struct
|
||||||
List.iter
|
List.iter
|
||||||
(fun (c, l) ->
|
(fun (c, l) ->
|
||||||
Buffer.add_int32_ne subst_table @@ Int32.of_int c;
|
Buffer.add_int32_ne subst_table @@ Int32.of_int c;
|
||||||
Buffer.add_string subst_table l)
|
Buffer.add_string subst_table l;
|
||||||
|
Buffer.add_char subst_table (Char.chr 0))
|
||||||
!substs;
|
!substs;
|
||||||
Buffer.add_int32_ne file (Int32.of_int @@ Bytes.length str_table);
|
Buffer.add_int32_ne file (Int32.of_int @@ Bytes.length str_table);
|
||||||
Buffer.add_int32_ne file (Int32.of_int @@ !glob_count);
|
Buffer.add_int32_ne file (Int32.of_int @@ !glob_count);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue