mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:28:38 +00:00
misc: Fix missing null terminator for strings with pchtxt (#3629)
As title say.
This commit is contained in:
parent
f5235fff29
commit
12c89a61f9
|
@ -253,7 +253,7 @@ namespace Ryujinx.HLE.Loaders.Mods
|
|||
|
||||
if (tokens[1][0] == '"')
|
||||
{
|
||||
var patch = Encoding.ASCII.GetBytes(tokens[1].Trim('"'));
|
||||
var patch = Encoding.ASCII.GetBytes(tokens[1].Trim('"') + "\0");
|
||||
patches.Add((uint)offset, patch);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue