diff options
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index a3224bcf08..6903f778c7 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -172,7 +172,7 @@ void TextureCache::MakeRangeDynamic(u32 start_address, u32 size) tcend = textures.upper_bound(start_address + size); if (iter != textures.begin()) - iter--; + --iter; for (; iter != tcend; ++iter) { |
