Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Kill me now.
Fixes issue 6227.
  • Loading branch information
RachelBryk committed Apr 8, 2013
1 parent 3ed0a96 commit 48f3e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/VideoCommon/Src/VideoConfig.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 48f3e96

Please sign in to comment.