Seriously, someone kill me.
This commit is contained in:
parent
48f3e962d6
commit
deece78e19
|
@ -139,7 +139,9 @@ 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)
|
||||
if (tmp != -9000)
|
||||
{
|
||||
if (tmp != SCALE_FORCE_INTEGRAL)
|
||||
iEFBScale = tmp;
|
||||
// Round down to multiple of native IR
|
||||
else
|
||||
|
@ -159,6 +161,7 @@ void VideoConfig::GameIniLoad(const char *ini_file)
|
|||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
iniFile.GetIfExists("Video_Settings", "DstAlphaPass", &bDstAlphaPass);
|
||||
iniFile.GetIfExists("Video_Settings", "DisableFog", &bDisableFog);
|
||||
|
|
Loading…
Reference in New Issue