mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 09:23:37 +00:00
Fix minor bug in akos codec1
svn-id: r14036
This commit is contained in:
parent
1503d476ec
commit
0db578ac11
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user