GPU/TextureCache: Fix tracking getting enabled without TC

This commit is contained in:
Stenzek 2024-11-18 23:34:24 +10:00
parent cf0c2ea1e6
commit 4b71428846
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -544,6 +544,9 @@ ALIGN_TO_CACHE_LINE GPUTextureCacheState s_state;
bool GPUTextureCache::ShouldTrackVRAMWrites()
{
if (!g_settings.gpu_texture_cache)
return false;
#ifdef ALWAYS_TRACK_VRAM_WRITES
return true;
#else