diff options
Diffstat (limited to 'Source/Plugins/Plugin_VideoOGL/Src/Config.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoOGL/Src/Config.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp b/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp index f37dc3fa79..1a92be40ca 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp @@ -37,13 +37,12 @@ void Config::Load() // get resolution iniFile.Get("Hardware", "WindowedRes", &temp, "640x480"); strncpy(iWindowedRes, temp.c_str(), 16); - - iniFile.Get("Hardware", "FullscreenRes", &temp, "640x480"); + // apply this to the fullscreen resolution too strncpy(iFSResolution, temp.c_str(), 16); iniFile.Get("Hardware", "Fullscreen", &bFullscreen, 0); // Hardware iniFile.Get("Hardware", "VSync", &bVSync, 0); // Hardware - iniFile.Get("Hardware", "RenderToMainframe", &renderToMainframe, false); + iniFile.Get("Hardware", "RenderToMainframe", &renderToMainframe, true); iniFile.Get("Settings", "StretchToFit", &bNativeResolution, true); iniFile.Get("Settings", "KeepAR_4_3", &bKeepAR43, false); iniFile.Get("Settings", "KeepAR_16_9", &bKeepAR169, false); |
