Add optional lpSecurityAttributes parameter to CreateDirectory call to make compilati...
[supertux.git] / src / worldmap / sprite_change.cpp
index 6952559..ff1460f 100644 (file)
@@ -79,7 +79,7 @@ SpriteChange::clear_stay_action()
 
   // if we are in a stay_group, also clear all stay actions in this group
   if (stay_group != "") {
-    for (std::list<SpriteChange*>::iterator i = all_sprite_changes.begin(); i != all_sprite_changes.end(); i++) {
+    for (std::list<SpriteChange*>::iterator i = all_sprite_changes.begin(); i != all_sprite_changes.end(); ++i) {
       SpriteChange* sc = *i;
       if (sc->stay_group != stay_group) continue;
       sc->in_stay_action = false;