Seriously, someone kill me.

This commit is contained in:
Rachel Bryk 2013-04-08 03:11:45 -04:00
parent 48f3e962d6
commit deece78e19
1 changed files with 19 additions and 16 deletions

View File

@ -139,7 +139,9 @@ void VideoConfig::GameIniLoad(const char *ini_file)
iniFile.GetIfExists("Video_Settings", "MSAA", &iMultisampleMode); iniFile.GetIfExists("Video_Settings", "MSAA", &iMultisampleMode);
int tmp = -9000; int tmp = -9000;
iniFile.GetIfExists("Video_Settings", "EFBScale", &tmp); // integral iniFile.GetIfExists("Video_Settings", "EFBScale", &tmp); // integral
if (tmp != -9000 && tmp != SCALE_FORCE_INTEGRAL) if (tmp != -9000)
{
if (tmp != SCALE_FORCE_INTEGRAL)
iEFBScale = tmp; iEFBScale = tmp;
// Round down to multiple of native IR // Round down to multiple of native IR
else else
@ -159,6 +161,7 @@ void VideoConfig::GameIniLoad(const char *ini_file)
break; break;
} }
} }
}
iniFile.GetIfExists("Video_Settings", "DstAlphaPass", &bDstAlphaPass); iniFile.GetIfExists("Video_Settings", "DstAlphaPass", &bDstAlphaPass);
iniFile.GetIfExists("Video_Settings", "DisableFog", &bDisableFog); iniFile.GetIfExists("Video_Settings", "DisableFog", &bDisableFog);