From cd39c9db79490ba4ddd3426d3b37b6ba9967d4af Mon Sep 17 00:00:00 2001 From: skidau Date: Tue, 19 May 2015 23:17:57 +0000 Subject: [PATCH] Made running the game at normal speed the default set-up. Patch by sergio-br2. git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@1451 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/common/ConfigManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/ConfigManager.cpp b/src/common/ConfigManager.cpp index 1411484b..ea82c8c6 100644 --- a/src/common/ConfigManager.cpp +++ b/src/common/ConfigManager.cpp @@ -524,7 +524,7 @@ void LoadConfig() soundInterpolation = ReadPref("gbaSoundInterpolation", 1); soundRecordDir = ReadPrefString("soundRecordDir"); threadPriority = ReadPref("priority", 2); - throttle = ReadPref("throttle", 0); + throttle = ReadPref("throttle", 100); tripleBuffering = ReadPref("tripleBuffering", 0); useBios = ReadPrefHex("useBiosGBA"); useBiosFileGB = ReadPref("useBiosGB", 0);