diff options
Diffstat (limited to 'src/core/gameconnection.cc')
-rw-r--r-- | src/core/gameconnection.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gameconnection.cc b/src/core/gameconnection.cc index b4778e0..de0b4e5 100644 --- a/src/core/gameconnection.cc +++ b/src/core/gameconnection.cc @@ -227,7 +227,7 @@ void GameConnection::frame(unsigned long timestamp) connection_network->frame(); // update client-sde state - for (Entity::Registry::iterator it = Entity::registry().begin(); it != Entity::registry().end(); it++) { + for (Entity::Registry::iterator it = Entity::registry().begin(); it != Entity::registry().end(); ++it) { Entity *entity = (*it).second; if (entity->type() == Entity::Projectile) { |