diff --git a/Ryujinx.HLE/Switch.cs b/Ryujinx.HLE/Switch.cs index 0bcc3647f4..6c56a60ab0 100644 --- a/Ryujinx.HLE/Switch.cs +++ b/Ryujinx.HLE/Switch.cs @@ -62,7 +62,7 @@ namespace Ryujinx.HLE Hid = new Hid(this, System.HidSharedMem.PA); - VsyncEvent = new AutoResetEvent(true); + VsyncEvent = new AutoResetEvent(true); } public void LoadCart(string ExeFsDir, string RomFsFile = null) diff --git a/Ryujinx/Config.cs b/Ryujinx/Config.cs index 71dbbfcbff..748d1dbf87 100644 --- a/Ryujinx/Config.cs +++ b/Ryujinx/Config.cs @@ -31,7 +31,7 @@ namespace Ryujinx Device.Log.SetEnable(LogLevel.Warning, Convert.ToBoolean(Parser.Value("Logging_Enable_Warn"))); Device.Log.SetEnable(LogLevel.Error, Convert.ToBoolean(Parser.Value("Logging_Enable_Error"))); - Device.System.State.DockedMode = Convert.ToBoolean(Parser.Value("Docked_Mode")); + Device.System.State.DockedMode = Convert.ToBoolean(Parser.Value("Docked_Mode")); Device.EnableDeviceVsync = Convert.ToBoolean(Parser.Value("Enable_Vsync"));