diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2020-07-04 14:19:59 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-04 14:19:59 +1000 |
| commit | 9c12a843f86d39bc64d9e9b5b670e67455487739 (patch) | |
| tree | e90d0211263dfaa0d128d1b5dc68d042e1325967 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 38b36536b2ccefd2bd552df040c706775b8396e8 (diff) | |
| parent | 0441d6aa5eb2d1ac45f1f1973fa5ad3adaf71f08 (diff) | |
Merge pull request #8884 from iwubcode/freelook_performance_fix
VertexShaderManager: Only look for freelook config changes if we're using freelook
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index b624755b11..1514f22db8 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -91,6 +91,7 @@ void VideoConfig::Refresh() bDumpXFBTarget = Config::Get(Config::GFX_DUMP_XFB_TARGET); bDumpFramesAsImages = Config::Get(Config::GFX_DUMP_FRAMES_AS_IMAGES); bFreeLook = Config::Get(Config::GFX_FREE_LOOK); + iFreelookControlType = Config::Get(Config::GFX_FREE_LOOK_CONTROL_TYPE); bUseFFV1 = Config::Get(Config::GFX_USE_FFV1); sDumpFormat = Config::Get(Config::GFX_DUMP_FORMAT); sDumpCodec = Config::Get(Config::GFX_DUMP_CODEC); |
