From a71483584e3bc0c52f4da7bfd7dc97a7f107803c Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Sat, 16 Sep 2023 16:22:01 -0700 Subject: [PATCH] config: default confirm on stop to false --- Source/Core/Core/Config/MainSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Config/MainSettings.cpp b/Source/Core/Core/Config/MainSettings.cpp index 4b9a2e58a4..382e13fa5e 100644 --- a/Source/Core/Core/Config/MainSettings.cpp +++ b/Source/Core/Core/Config/MainSettings.cpp @@ -420,7 +420,7 @@ const Info MAIN_USE_PANIC_HANDLERS{{System::Main, "Interface", "UsePanicHa const Info MAIN_ABORT_ON_PANIC_ALERT{{System::Main, "Interface", "AbortOnPanicAlert"}, false}; const Info MAIN_OSD_MESSAGES{{System::Main, "Interface", "OnScreenDisplayMessages"}, true}; const Info MAIN_SKIP_NKIT_WARNING{{System::Main, "Interface", "SkipNKitWarning"}, false}; -const Info MAIN_CONFIRM_ON_STOP{{System::Main, "Interface", "ConfirmStop"}, true}; +const Info MAIN_CONFIRM_ON_STOP{{System::Main, "Interface", "ConfirmStop"}, false}; const Info MAIN_SHOW_CURSOR{{System::Main, "Interface", "CursorVisibility"}, ShowCursor::OnMovement}; const Info MAIN_LOCK_CURSOR{{System::Main, "Interface", "LockCursor"}, false};