diff --git a/Ryujinx.Core/OsHle/Services/Nv/INvDrvServices.cs b/Ryujinx.Core/OsHle/Services/Nv/INvDrvServices.cs index 00209f9db7..cd972a73dc 100644 --- a/Ryujinx.Core/OsHle/Services/Nv/INvDrvServices.cs +++ b/Ryujinx.Core/OsHle/Services/Nv/INvDrvServices.cs @@ -38,12 +38,13 @@ namespace Ryujinx.Core.OsHle.Services.Nv { m_Commands = new Dictionary() { - { 0, Open }, - { 1, Ioctl }, - { 2, Close }, - { 3, Initialize }, - { 4, QueryEvent }, - { 8, SetClientPid } + { 0, Open }, + { 1, Ioctl }, + { 2, Close }, + { 3, Initialize }, + { 4, QueryEvent }, + { 8, SetClientPid } + { 13, FinishInitialize } }; Event = new KEvent(); @@ -138,6 +139,13 @@ namespace Ryujinx.Core.OsHle.Services.Nv return 0; } + + public long FinishInitialize(ServiceCtx Context) + { + Context.Ns.Log.PrintStub(LogClass.ServiceNv, "Stubbed."); + + return 0; + } private static int ProcessIoctlNvGpuAS(ServiceCtx Context, int Cmd) { @@ -217,4 +225,4 @@ namespace Ryujinx.Core.OsHle.Services.Nv } } } -} \ No newline at end of file +}