mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-22 04:24:56 +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
Reference in a new issue