mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 03:58:34 +00:00
SoftwareKeyboard: Interactive data size should include size field. (#907)
This commit is contained in:
parent
1d8da18334
commit
ad2424171a
|
@ -166,9 +166,9 @@ namespace Ryujinx.HLE.HOS.Applets
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// In interactive mode, we write the length of the text
|
// In interactive mode, we write the length of the text as a long, rather than
|
||||||
// as a long, rather than a result code.
|
// a result code. This field is inclusive of the 64-bit size.
|
||||||
writer.Write((long)output.Length);
|
writer.Write((long)output.Length + 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
writer.Write(output);
|
writer.Write(output);
|
||||||
|
|
Loading…
Reference in a new issue