Don't enable Boot to Pause by default in the debugger

This behavior is useful sometimes, but it's not always useful,
and it can be rather confusing if you're not aware of it.
This commit is contained in:
JosJuice 2017-06-23 16:05:27 +02:00
parent e30484e8a7
commit 7ebd324fe7

View File

@ -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));