From 2e68c2d90add7168d4922640ea495916d789446e Mon Sep 17 00:00:00 2001 From: WilliamWsyHK <> Date: Sun, 9 Dec 2018 22:19:26 +0800 Subject: [PATCH] Gives 16-byte data for GetStatus --- Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs b/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs index 1340463bdc..fb63e78f3c 100644 --- a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs +++ b/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs @@ -143,7 +143,9 @@ namespace Ryujinx.HLE.HOS.Services.Nv { 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; }