This commit is contained in:
emmaus 2018-09-08 20:49:00 +00:00
commit 479578e315
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ namespace Ryujinx.HLE
Hid = new Hid(this, System.HidSharedMem.PA); Hid = new Hid(this, System.HidSharedMem.PA);
VsyncEvent = new AutoResetEvent(true); VsyncEvent = new AutoResetEvent(true);
} }
public void LoadCart(string ExeFsDir, string RomFsFile = null) public void LoadCart(string ExeFsDir, string RomFsFile = null)

View file

@ -31,7 +31,7 @@ namespace Ryujinx
Device.Log.SetEnable(LogLevel.Warning, Convert.ToBoolean(Parser.Value("Logging_Enable_Warn"))); 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.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")); Device.EnableDeviceVsync = Convert.ToBoolean(Parser.Value("Enable_Vsync"));