aboutsummaryrefslogtreecommitdiff
path: root/graphics/imageman.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2006-02-03 07:30:29 +0000
committerPaweł Kołodziejski2006-02-03 07:30:29 +0000
commit2ebdbbf5e0123302cc16bf4ab45eb65d8f11601f (patch)
tree9f98ad9bffad38963ce5f2ae1c3da61657180589 /graphics/imageman.cpp
parent4df095cb36369c72075744dc3521aa9c2f31218c (diff)
downloadscummvm-rg350-2ebdbbf5e0123302cc16bf4ab45eb65d8f11601f.tar.gz
scummvm-rg350-2ebdbbf5e0123302cc16bf4ab45eb65d8f11601f.tar.bz2
scummvm-rg350-2ebdbbf5e0123302cc16bf4ab45eb65d8f11601f.zip
fixes allow compile with emsvc4 again
svn-id: r20355
Diffstat (limited to 'graphics/imageman.cpp')
-rw-r--r--graphics/imageman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/imageman.cpp b/graphics/imageman.cpp
index 7e78b52279..77393bb428 100644
--- a/graphics/imageman.cpp
+++ b/graphics/imageman.cpp
@@ -41,8 +41,8 @@ ImageManager::~ImageManager() {
}
_surfaces.clear();
#ifdef USE_ZLIB
- for (ZipIterator pos = _archives.begin(); pos != _archives.end(); ++pos) {
- unzClose(*pos);
+ for (ZipIterator pos2 = _archives.begin(); pos2 != _archives.end(); ++pos2) {
+ unzClose(*pos2);
}
_archives.clear();
#endif