From 7ebd324fe7269450c0b7318bb0ce11d62cf4920d Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 23 Jun 2017 16:05:27 +0200 Subject: [PATCH] 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. --- Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp index 77ecf38f55..7bc7f07210 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp @@ -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));