diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/ai-bots.cpp | 2 | ||||
-rw-r--r-- | engines/hdb/draw-manager.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/ai-bots.cpp b/engines/hdb/ai-bots.cpp index f3c89dccd3..54c0d18b75 100644 --- a/engines/hdb/ai-bots.cpp +++ b/engines/hdb/ai-bots.cpp @@ -135,7 +135,7 @@ void aiOmniBotMissileInit(AIEntity *e) { } void aiOmniBotMissileInit2(AIEntity *e) { - for (int i = 0; i < e->movedownFrames;i++) + for (int i = 0; i < e->movedownFrames; i++) e->moveleftGfx[i] = e->moverightGfx[i] = e->moveupGfx[i] = e->movedownGfx[i]; e->moveleftFrames = e->moverightFrames = e->moveupFrames = e->movedownFrames; diff --git a/engines/hdb/draw-manager.cpp b/engines/hdb/draw-manager.cpp index 23bfb35832..133a24d01d 100644 --- a/engines/hdb/draw-manager.cpp +++ b/engines/hdb/draw-manager.cpp @@ -517,7 +517,7 @@ void DrawMan::drawText(const char *string) { } // Draw the characters - for (int j = 0; j < (int)strlen(string);j++) { + for (int j = 0; j < (int)strlen(string); j++) { c = string[j]; if (c == '\n' || cr[j]) { _cursorX = _eLeft; |