diff options
| author | dreamsyntax <dreamsyntax@gmail.com> | 2024-12-26 17:21:02 -0700 |
|---|---|---|
| committer | dreamsyntax <dreamsyntax@gmail.com> | 2024-12-28 01:09:50 -0700 |
| commit | 07f712f8a0c208e4610526fc9ccc307bab099f84 (patch) | |
| tree | b7457d8036f4c0ec958ff7db9a157fb8d0c40587 /Source/Core/VideoCommon/TextureCacheBase.cpp | |
| parent | 05cad38abc1d25f57500e530d63b545fa7b56499 (diff) | |
Core/VideoCommon: Fix duplicate OSD Custom Textures messages
Resolves duplicate OSD messages for Loading and Found custom textures.
VideoBackend initialization results in HiresTexture::Init being called.
We already call HiresTexture::Update when OnNewTitleLoad is called.
Thus we can remove HiresTextures::Init completely as it is redundant.
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index a624734d60..61882476d7 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -99,8 +99,6 @@ TextureCacheBase::TextureCacheBase() TexDecoder_SetTexFmtOverlayOptions(m_backup_config.texfmt_overlay, m_backup_config.texfmt_overlay_center); - HiresTexture::Init(); - TMEM::InvalidateAll(); } |
