Gives 16-byte data for GetStatus

This commit is contained in:
WilliamWsyHK 2018-12-09 22:19:26 +08:00
commit 2e68c2d90a

View file

@ -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;
} }