From 6346d56beefb9d5cadade264eb239463857283f7 Mon Sep 17 00:00:00 2001 From: David Marcec Date: Tue, 10 Jul 2018 15:12:14 +1000 Subject: [PATCH] dont forget the setting --- Ryujinx.HLE/OsHle/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/OsHle/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs b/Ryujinx.HLE/OsHle/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs index 72188bd816..82e4901489 100644 --- a/Ryujinx.HLE/OsHle/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs +++ b/Ryujinx.HLE/OsHle/Services/Nv/NvHostCtrl/NvHostCtrlIoctl.cs @@ -16,7 +16,7 @@ namespace Ryujinx.HLE.OsHle.Services.Nv.NvHostCtrl { UserCtxs = new ConcurrentDictionary(); - if (Set.NxSettings.Settings.TryGetValue("", out object ProductionModeSetting)) + if (Set.NxSettings.Settings.TryGetValue("nv!rmos_set_production_mode", out object ProductionModeSetting)) { IsProductionMode = ((string)ProductionModeSetting) != "0"; // Default value is "" }