summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-05-07 11:25:29 -0400
committerFernandoS27 <fsahmkow27@gmail.com>2019-05-07 12:33:10 -0400
commit3a08c3207b726a71e15784571e7c4677d25e3b3f (patch)
tree5aabe9038ac94cc3e02032c39ccb33bfce9b49b2 /src
parentc63e68c48015bf9dff5ef53b0f14d18e7e214107 (diff)
Correct possible error on Rasterizer Caches
There was a weird bug that could happen if the object died directly and the cache address wasn't stored.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/rasterizer_cache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_cache.h b/src/video_core/rasterizer_cache.h
index 291772186..185b6f414 100644
--- a/src/video_core/rasterizer_cache.h
+++ b/src/video_core/rasterizer_cache.h
@@ -147,8 +147,9 @@ protected:
object->SetIsRegistered(false);
rasterizer.UpdatePagesCachedCount(object->GetCpuAddr(), object->GetSizeInBytes(), -1);
+ const CacheAddr addr = object->GetCacheAddr();
interval_cache.subtract({GetInterval(object), ObjectSet{object}});
- map_cache.erase(object->GetCacheAddr());
+ map_cache.erase(addr);
}
/// Returns a ticks counter used for tracking when cached objects were last modified