From 48f3e962d6e10578813f12b8edfd7b6e06000620 Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Mon, 8 Apr 2013 03:05:12 -0400 Subject: [PATCH] Kill me now. Fixes issue 6227. --- Source/Core/VideoCommon/Src/VideoConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/Src/VideoConfig.cpp b/Source/Core/VideoCommon/Src/VideoConfig.cpp index a6139363e6..4b36338c89 100644 --- a/Source/Core/VideoCommon/Src/VideoConfig.cpp +++ b/Source/Core/VideoCommon/Src/VideoConfig.cpp @@ -137,9 +137,9 @@ void VideoConfig::GameIniLoad(const char *ini_file) iniFile.GetIfExists("Video_Settings", "EnablePixelLighting", &bEnablePixelLighting); iniFile.GetIfExists("Video_Settings", "HackedBufferUpload", &bHackedBufferUpload); iniFile.GetIfExists("Video_Settings", "MSAA", &iMultisampleMode); - int tmp = 0; + int tmp = -9000; iniFile.GetIfExists("Video_Settings", "EFBScale", &tmp); // integral - if (tmp != SCALE_FORCE_INTEGRAL) + if (tmp != -9000 && tmp != SCALE_FORCE_INTEGRAL) iEFBScale = tmp; // Round down to multiple of native IR else