mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix clearing of render targets. We were skipping every other one.
This commit is contained in:
@ -208,7 +208,7 @@ void TextureCache::ClearRenderTargets()
|
||||
if (iter->second->type == TCET_EC_VRAM)
|
||||
{
|
||||
delete iter->second;
|
||||
textures.erase(iter++);
|
||||
textures.erase(iter);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user