diff --git a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs b/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs index d93372e22b..422c83505f 100644 --- a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs +++ b/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs @@ -42,14 +42,15 @@ namespace Ryujinx.HLE.HOS.Services.Nv { _commands = new Dictionary() { - { 0, Open }, - { 1, Ioctl }, - { 2, Close }, - { 3, Initialize }, - { 4, QueryEvent }, - { 8, SetClientPid }, - { 11, Ioctl }, - { 13, FinishInitialize } + { 0, Open }, + { 1, Ioctl }, + { 2, Close }, + { 3, Initialize }, + { 4, QueryEvent }, + { 8, SetClientPid }, + { 9, DumpGraphicsMemoryInfo }, + { 11, Ioctl }, + { 13, FinishInitialize } }; _event = new KEvent(system); @@ -148,6 +149,11 @@ namespace Ryujinx.HLE.HOS.Services.Nv return 0; } + public long DumpGraphicsMemoryInfo(ServiceCtx context) + { + return 0; + } + public long FinishInitialize(ServiceCtx context) { Logger.PrintStub(LogClass.ServiceNv);