diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-08-08 12:17:26 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-08 12:17:26 +1000 |
| commit | 9477c8b0ed834efc3b7cf5b9fcd48caf57611a8a (patch) | |
| tree | 37f8dbe9ac1a4e283f1114d35e03f0c77a403a82 /Source/Core/VideoCommon | |
| parent | 2d316196c9b584bf3a97d2b3c32596ae3ee50247 (diff) | |
| parent | 86a651e27f22215752a444a83ae258ae3efd832a (diff) | |
Merge pull request #8293 from lioncash/ref
VideoCommon/TextureCacheBase: Make OnConfigChanged's parameter a const reference
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 6 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.h | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index 2951573908..a4b7c28676 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -134,7 +134,7 @@ void TextureCacheBase::Invalidate() texture_pool.clear(); } -void TextureCacheBase::OnConfigChanged(VideoConfig& config) +void TextureCacheBase::OnConfigChanged(const VideoConfig& config) { if (config.bHiresTextures != backup_config.hires_textures || config.bCacheHiresTextures != backup_config.cache_hires_textures) @@ -152,9 +152,7 @@ void TextureCacheBase::OnConfigChanged(VideoConfig& config) config.bArbitraryMipmapDetection != backup_config.arbitrary_mipmap_detection) { Invalidate(); - - TexDecoder_SetTexFmtOverlayOptions(g_ActiveConfig.bTexFmtOverlayEnable, - g_ActiveConfig.bTexFmtOverlayCenter); + TexDecoder_SetTexFmtOverlayOptions(config.bTexFmtOverlayEnable, config.bTexFmtOverlayCenter); } SetBackupConfig(config); diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h index 5e5a28b34b..e8ecf5b6fe 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.h +++ b/Source/Core/VideoCommon/TextureCacheBase.h @@ -204,7 +204,7 @@ public: bool Initialize(); - void OnConfigChanged(VideoConfig& config); + void OnConfigChanged(const VideoConfig& config); // Removes textures which aren't used for more than TEXTURE_KILL_THRESHOLD frames, // frameCount is the current frame number. |
