mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Fix clearing of render targets. We were skipping every other one.
This commit is contained in:
parent
1d44d3baf5
commit
446d9279b1
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ void TextureCache::ClearRenderTargets()
|
|||
if (iter->second->type == TCET_EC_VRAM)
|
||||
{
|
||||
delete iter->second;
|
||||
textures.erase(iter++);
|
||||
textures.erase(iter);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue