diff options
-rw-r--r-- | engines/tony/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/game.cpp b/engines/tony/game.cpp index abc7f1a2e0..5b9502468a 100644 --- a/engines/tony/game.cpp +++ b/engines/tony/game.cpp @@ -1604,7 +1604,7 @@ void RMPointer::updateCursor() { uint16 *src = (uint16 *)cursorData; for (int i = 0; i < 64; i++) { uint16 *lineP = src; - for (int j = 0; j < 64; j++, lineP) { + for (int j = 0; j < 64; j++) { lineP[j] = RMGfxTargetBuffer::_precalcTable[lineP[j] & 0x7FFF]; } src += 64; |