Merge pull request #5669 from JosJuice/boottopause-false

Don't enable Boot to Pause by default in the debugger
This commit is contained in:
shuffle2 2017-06-23 17:02:03 -07:00 committed by GitHub
commit d715e740b5
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ void CCodeWindow::Load()
IniFile::Section* general = ini.GetOrCreateSection("General"); IniFile::Section* general = ini.GetOrCreateSection("General");
general->Get("DebuggerFont", &fontDesc); general->Get("DebuggerFont", &fontDesc);
general->Get("AutomaticStart", &config_instance.bAutomaticStart, false); general->Get("AutomaticStart", &config_instance.bAutomaticStart, false);
general->Get("BootToPause", &config_instance.bBootToPause, true); general->Get("BootToPause", &config_instance.bBootToPause, false);
if (!fontDesc.empty()) if (!fontDesc.empty())
DebuggerFont.SetNativeFontInfoUserDesc(StrToWxStr(fontDesc)); DebuggerFont.SetNativeFontInfoUserDesc(StrToWxStr(fontDesc));