From 479578e315c34c481dcb6fb84c17529e4a839b42 Mon Sep 17 00:00:00 2001 From: emmaus Date: Sat, 8 Sep 2018 20:49:00 +0000 Subject: [PATCH] fix nits --- Ryujinx.HLE/Switch.cs | 2 +- Ryujinx/Config.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"));