From 399d71373f418bf57c452f6a8d5061d1493405c3 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Mon, 21 Jul 2014 10:04:01 +0200 Subject: [PATCH] Change pauseWhenMinimized default to false --- Core/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Config.cpp b/Core/Config.cpp index 5f419084f1..7d420d7791 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -310,7 +310,7 @@ static ConfigSetting generalSettings[] = { ConfigSetting("WindowHeight", &g_Config.iWindowHeight, 0), ConfigSetting("PauseOnLostFocus", &g_Config.bPauseOnLostFocus, false), #endif - ConfigSetting("PauseWhenMinimized", &g_Config.bPauseWhenMinimized, true), + ConfigSetting("PauseWhenMinimized", &g_Config.bPauseWhenMinimized, false), ConfigSetting("DumpDecryptedEboots", &g_Config.bDumpDecryptedEboot, false), ConfigSetting(false), };