mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-10 07:12:54 +02:00
TexCache: use c++11 syntax for std::map::erase
This commit is contained in:
@ -152,7 +152,7 @@ void TextureCache::Cleanup(int _frameCount)
|
||||
!iter->second->IsEfbCopy())
|
||||
{
|
||||
delete iter->second;
|
||||
textures.erase(iter++);
|
||||
iter = textures.erase(iter);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user