mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 18:47:47 +00:00
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.
This commit is contained in:
parent
9359cc790c
commit
ce5862c505
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue