diff options
author | Sven Hesse | 2013-03-20 08:27:51 +0100 |
---|---|---|
committer | Sven Hesse | 2013-03-20 08:27:51 +0100 |
commit | 19d90718413ba2d725bb2cce9e62cc532516f459 (patch) | |
tree | db6657cd9176ca2209cdcf8121874064436299f7 | |
parent | 82e6e61be8e65d9195dae39057ed1d3c69ce2ec1 (diff) | |
download | scummvm-rg350-19d90718413ba2d725bb2cce9e62cc532516f459.tar.gz scummvm-rg350-19d90718413ba2d725bb2cce9e62cc532516f459.tar.bz2 scummvm-rg350-19d90718413ba2d725bb2cce9e62cc532516f459.zip |
GOB: iterator++ -> ++iterator
-rw-r--r-- | engines/gob/anifile.cpp | 2 |
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)) |