Fix the widescreen hack for Wii games with 4:3 forced in game INI

This commit is contained in:
JosJuice
2018-11-07 19:00:24 +01:00
parent 3d61b1a1d5
commit b93b7ec419
3 changed files with 15 additions and 6 deletions

View File

@ -62,8 +62,9 @@ void VideoConfig::Refresh()
bWidescreenHack = Config::Get(Config::GFX_WIDESCREEN_HACK);
const AspectMode config_aspect_mode = Config::Get(Config::GFX_ASPECT_RATIO);
suggested_aspect_mode = Config::Get(Config::GFX_SUGGESTED_ASPECT_RATIO);
if (config_aspect_mode == AspectMode::Auto)
aspect_mode = Config::Get(Config::GFX_SUGGESTED_ASPECT_RATIO);
aspect_mode = suggested_aspect_mode;
else
aspect_mode = config_aspect_mode;
bCrop = Config::Get(Config::GFX_CROP);