aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cine')
-rw-r--r--engines/cine/object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/object.cpp b/engines/cine/object.cpp
index 42139a37c3..7fde7ee1e6 100644
--- a/engines/cine/object.cpp
+++ b/engines/cine/object.cpp
@@ -40,7 +40,7 @@ Common::List<overlay> overlayList;
/*! \brief Resets all elements in the object table. */
void resetObjectTable() {
- for (Common::Array<ObjectStruct>::iterator it = objectTable.begin(); it != objectTable.end(); it++) {
+ for (Common::Array<ObjectStruct>::iterator it = objectTable.begin(); it != objectTable.end(); ++it) {
it->clear();
}
}