From 01c70c17c2b1afa43150152b2837d26f1c46bc01 Mon Sep 17 00:00:00 2001 From: HorrorTroll Date: Mon, 25 Mar 2019 14:11:00 +0700 Subject: [PATCH] Remove NVHOST_IOCTL_CTRL_EVENT_KILL (0x40080021) --- .../HOS/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs b/Ryujinx.HLE/HOS/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs index 6b12ac325c..e05ea77ce9 100644 --- a/Ryujinx.HLE/HOS/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs +++ b/Ryujinx.HLE/HOS/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs @@ -37,7 +37,6 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvHostCtrl case 0x001d: return EventWait (context); case 0x001e: return EventWaitAsync(context); case 0x001f: return EventRegister (context); - case 0x0021: return EventKill (context); } throw new NotImplementedException(cmd.ToString("x8")); @@ -151,18 +150,6 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvHostCtrl return NvResult.Success; } - private static int EventKill(ServiceCtx context) - { - long inputPosition = context.Request.GetBufferType0x21().Position; - long outputPosition = context.Request.GetBufferType0x22().Position; - - long events = context.Memory.ReadInt64(inputPosition); - - Logger.PrintStub(LogClass.ServiceNv); - - return NvResult.Success; - } - private static int SyncptReadMinOrMax(ServiceCtx context, bool max) { long inputPosition = context.Request.GetBufferType0x21().Position;