summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2014-02-13 21:10:27 +1300
committerMatthew Parlane <parlane@gmail.com>2014-02-13 21:10:27 +1300
commit06329e24531b69a4856bbe05a8c89c57d9346de6 (patch)
treed2c3cd6256b09ebdc04b8c913b21c2e56d30c2e1 /Source/Core/VideoCommon/TextureCacheBase.cpp
parent88526be3b5cfc33436d4390935d7982c4795520a (diff)
parent404624bf0b0125e5a408021c616ee9b9e2dde382 (diff)
Merge pull request #65 from Tilka/nits
Small changes
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.cpp2
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)
{