diff options
| author | Rachel Bryk <RachelBryk@gmail.com> | 2013-04-08 03:11:45 -0400 |
|---|---|---|
| committer | Rachel Bryk <RachelBryk@gmail.com> | 2013-04-08 03:11:45 -0400 |
| commit | deece78e19aa59151bc608aabb1cdcb00f734475 (patch) | |
| tree | 987ffac3d9d4522cfd7616d3c99c2fa969623dba /Source/Core | |
| parent | 48f3e962d6e10578813f12b8edfd7b6e06000620 (diff) | |
Seriously, someone kill me.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoCommon/Src/VideoConfig.cpp | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoConfig.cpp b/Source/Core/VideoCommon/Src/VideoConfig.cpp index 4b36338c89..ad040b9e24 100644 --- a/Source/Core/VideoCommon/Src/VideoConfig.cpp +++ b/Source/Core/VideoCommon/Src/VideoConfig.cpp @@ -139,24 +139,27 @@ void VideoConfig::GameIniLoad(const char *ini_file) iniFile.GetIfExists("Video_Settings", "MSAA", &iMultisampleMode); int tmp = -9000; iniFile.GetIfExists("Video_Settings", "EFBScale", &tmp); // integral - if (tmp != -9000 && tmp != SCALE_FORCE_INTEGRAL) - iEFBScale = tmp; - // Round down to multiple of native IR - else + if (tmp != -9000) { - switch (iEFBScale) + if (tmp != SCALE_FORCE_INTEGRAL) + iEFBScale = tmp; + // Round down to multiple of native IR + else { - case SCALE_AUTO: - iEFBScale = SCALE_AUTO_INTEGRAL; - break; - case SCALE_1_5X: - iEFBScale = SCALE_1X; - break; - case SCALE_2_5X: - iEFBScale = SCALE_2X; - break; - default: - break; + switch (iEFBScale) + { + case SCALE_AUTO: + iEFBScale = SCALE_AUTO_INTEGRAL; + break; + case SCALE_1_5X: + iEFBScale = SCALE_1X; + break; + case SCALE_2_5X: + iEFBScale = SCALE_2X; + break; + default: + break; + } } } |
