From 19d90718413ba2d725bb2cce9e62cc532516f459 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Wed, 20 Mar 2013 08:27:51 +0100 Subject: GOB: iterator++ -> ++iterator --- engines/gob/anifile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/gob/anifile.cpp') 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)) -- cgit v1.2.3