From 8d62a790e337422fea283c51a583a26346ced298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ed=C3=AAnis=20Freindorfer=20Azevedo?= Date: Mon, 17 Feb 2020 03:01:06 -0300 Subject: [PATCH] Change default options for GB. We set to automatically display borders on SGB games, as well as setting the default emulation system to `automatic`. --- src/common/ConfigManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/ConfigManager.cpp b/src/common/ConfigManager.cpp index 251f0fb2..37948252 100644 --- a/src/common/ConfigManager.cpp +++ b/src/common/ConfigManager.cpp @@ -501,10 +501,10 @@ void LoadConfig() fsWidth = ReadPref("fsWidth", 800); fullScreen = ReadPrefHex("fullScreen"); fullScreenStretch = ReadPref("stretch", 0); - gbBorderAutomatic = ReadPref("borderAutomatic", 0); + gbBorderAutomatic = ReadPref("borderAutomatic", 1); gbBorderOn = ReadPrefHex("borderOn"); gbColorOption = ReadPref("colorOption", 0); - gbEmulatorType = ReadPref("emulatorType", 1); + gbEmulatorType = ReadPref("emulatorType", 0); gbFrameSkip = ReadPref("gbFrameSkip", 0); gbPaletteOption = ReadPref("gbPaletteOption", 0); gbSoundSetDeclicking(ReadPref("gbSoundDeclicking", 1));