diff options
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/ai-funcs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/ai-funcs.cpp b/engines/hdb/ai-funcs.cpp index 08b72ee049..e7cbfe9bd5 100644 --- a/engines/hdb/ai-funcs.cpp +++ b/engines/hdb/ai-funcs.cpp @@ -1844,8 +1844,8 @@ void AI::moveEnts() { } // Call aiAction for all other Entities - for (Common::Array<AIEntity *>::iterator it = _ents->begin(); it != _ents->end(); it++) { - e = (*it); + for (int i = 0; i < _ents->size(); i++) { + e = _ents->operator[](i); if (e->aiAction) { // NPC Touchplate Counter if (e != _player && e->touchpWait) { |