aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorSven Hesse2013-03-20 08:27:51 +0100
committerSven Hesse2013-03-20 08:27:51 +0100
commit19d90718413ba2d725bb2cce9e62cc532516f459 (patch)
treedb6657cd9176ca2209cdcf8121874064436299f7 /engines/gob
parent82e6e61be8e65d9195dae39057ed1d3c69ce2ec1 (diff)
downloadscummvm-rg350-19d90718413ba2d725bb2cce9e62cc532516f459.tar.gz
scummvm-rg350-19d90718413ba2d725bb2cce9e62cc532516f459.tar.bz2
scummvm-rg350-19d90718413ba2d725bb2cce9e62cc532516f459.zip
GOB: iterator++ -> ++iterator
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/anifile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/anifile.cpp b/engines/gob/anifile.cpp
index 085ac800cd..3b6a7f61ed 100644
--- a/engines/gob/anifile.cpp
+++ b/engines/gob/anifile.cpp
@@ -159,7 +159,7 @@ void ANIFile::loadAnimation(Animation &animation, FrameArray &frames,
area.left = area.top = 0x7FFF;
area.right = area.bottom = -0x7FFF;
- for (ChunkList::const_iterator c = frame.begin(); c != frame.end(); c++) {
+ for (ChunkList::const_iterator c = frame.begin(); c != frame.end(); ++c) {
uint16 cL, cT, cR, cB;
if (!getCoordinates(c->layer, c->part, cL, cT, cR, cB))