diff options
| author | OatmealDome <julian@oatmealdome.me> | 2023-01-09 00:25:11 -0500 |
|---|---|---|
| committer | OatmealDome <julian@oatmealdome.me> | 2023-09-05 11:49:22 -0400 |
| commit | de781a6fa79f466f66b56f161e3e1a15289691b1 (patch) | |
| tree | 3e83b6aaa593a87ba3e8cd729b685a734a1cda49 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 6f6eb73667d461073b44f993c00095c30ac35414 (diff) | |
RenderBase: Allow widescreen heuristic's transition threshold to be overridden by onion config
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index d9a35b727e..a5a6d77728 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -86,6 +86,8 @@ void VideoConfig::Refresh() bWidescreenHack = Config::Get(Config::GFX_WIDESCREEN_HACK); aspect_mode = Config::Get(Config::GFX_ASPECT_RATIO); suggested_aspect_mode = Config::Get(Config::GFX_SUGGESTED_ASPECT_RATIO); + widescreen_heuristic_transition_threshold = + Config::Get(Config::GFX_WIDESCREEN_HEURISTIC_TRANSITION_THRESHOLD); bCrop = Config::Get(Config::GFX_CROP); iSafeTextureCache_ColorSamples = Config::Get(Config::GFX_SAFE_TEXTURE_CACHE_COLOR_SAMPLES); bShowFPS = Config::Get(Config::GFX_SHOW_FPS); |
