mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
Seriously, someone kill me.
This commit is contained in:
parent
48f3e962d6
commit
deece78e19
1 changed files with 19 additions and 16 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue