From 0db578ac11eb451bda64eedd05bff07a0d7ae0b4 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Fri, 25 Jun 2004 06:10:13 +0000 Subject: Fix minor bug in akos codec1 svn-id: r14036 --- scumm/akos.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/akos.cpp b/scumm/akos.cpp index 9dd13e416e..b91c75688f 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -606,7 +606,7 @@ byte AkosRenderer::codec1(int xmoveCur, int ymoveCur) { startScaleIndexX = 0x180 + xmoveCur; j = startScaleIndexX; for (i = 0; i < xmoveCur; i++) { - if (v1.scaletable[j++] < _scaleX) + if (v1.scaletable[j--] < _scaleX) cur_x += v1.scaleXstep; } -- cgit v1.2.3