Gives 16-byte data for GetStatus
This commit is contained in:
parent
9c2d9e47cd
commit
2e68c2d90a
1 changed files with 3 additions and 1 deletions
|
@ -143,7 +143,9 @@ namespace Ryujinx.HLE.HOS.Services.Nv
|
||||||
{
|
{
|
||||||
Logger.PrintStub(LogClass.ServiceNv, "Stubbed.");
|
Logger.PrintStub(LogClass.ServiceNv, "Stubbed.");
|
||||||
|
|
||||||
context.ResponseData.Write(0x10);
|
byte[] bytes = new byte[0x10];
|
||||||
|
context.ResponseData.Write(bytes, 0, 0x10);
|
||||||
|
context.ResponseData.Write(0);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue