mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Merge pull request #5669 from JosJuice/boottopause-false
Don't enable Boot to Pause by default in the debugger
This commit is contained in:
@ -70,7 +70,7 @@ void CCodeWindow::Load()
|
||||
IniFile::Section* general = ini.GetOrCreateSection("General");
|
||||
general->Get("DebuggerFont", &fontDesc);
|
||||
general->Get("AutomaticStart", &config_instance.bAutomaticStart, false);
|
||||
general->Get("BootToPause", &config_instance.bBootToPause, true);
|
||||
general->Get("BootToPause", &config_instance.bBootToPause, false);
|
||||
|
||||
if (!fontDesc.empty())
|
||||
DebuggerFont.SetNativeFontInfoUserDesc(StrToWxStr(fontDesc));
|
||||
|
Reference in New Issue
Block a user