mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 10:19:27 +00:00
AVALANCHE: Change computing method of picnum in triptype::andexor().
This commit is contained in:
parent
6f20b8f5a2
commit
e70b5167c9
@ -151,7 +151,7 @@ void triptype::original() {
|
||||
void triptype::andexor() {
|
||||
if ((vanishifstill) && (ix == 0) && (iy == 0))
|
||||
return;
|
||||
byte picnum = face * a.seq + step + 1;
|
||||
byte picnum = face * a.seq + step; // There'll maybe problem because of the different array indexes in Pascal (starting from 1).
|
||||
|
||||
_tr->_vm->_graph.drawSprite(_info, picnum, x, y);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user