From 0e57943d37191f3084fcc0f429bf2cc75b39bc57 Mon Sep 17 00:00:00 2001 From: Vova Date: Tue, 26 Aug 2025 09:45:00 +1000 Subject: [PATCH] Optimization: Removed additional delays for services that did not affect the solution of the problem --- src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs b/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs index 60c428c1a..05954b927 100644 --- a/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs +++ b/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs @@ -259,8 +259,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv // Fix emulator crash before splash screen for // TMNT Shredder's Revenges - if ((ioctlCommand.Type == NvIoctl.NvMapCustomMagic && (ioctlCommand.Number == 0x05 || ioctlCommand.Number == 0x09)) || - (ioctlCommand.Type == NvIoctl.NvGpuAsMagic && (ioctlCommand.Number == 0x05 || ioctlCommand.Number == 0x06))) + if ((ioctlCommand.Type == NvIoctl.NvGpuAsMagic && (ioctlCommand.Number == 0x05 || ioctlCommand.Number == 0x06))) { System.Threading.Thread.Sleep(50); Logger.Notice.Print(LogClass.ServiceNv, $"Type_{ioctlCommand.Type}, Command_{ioctlCommand.Number} Delay!");