mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
[VM] Fixed a bug where string arguments did not have a null terminator.
This commit is contained in:
parent
f6b766bda3
commit
d85de25f31
@ -367,7 +367,7 @@ export class VirtualMachine {
|
|||||||
this.string_arg_store.write_string_utf16_at(
|
this.string_arg_store.write_string_utf16_at(
|
||||||
0,
|
0,
|
||||||
string_arg,
|
string_arg,
|
||||||
string_arg.length * 2,
|
string_arg.length * 2 + 2,
|
||||||
);
|
);
|
||||||
exec.push_arg(this.string_arg_store.address, Kind.String);
|
exec.push_arg(this.string_arg_store.address, Kind.String);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user