From e70b5167c9ba9e1802482e0123f448b3c2d250c2 Mon Sep 17 00:00:00 2001 From: uruk Date: Sat, 20 Jul 2013 11:12:10 +0200 Subject: [PATCH] AVALANCHE: Change computing method of picnum in triptype::andexor(). --- engines/avalanche/trip6.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/avalanche/trip6.cpp b/engines/avalanche/trip6.cpp index ed64847f3f2..1758f1b9ef1 100644 --- a/engines/avalanche/trip6.cpp +++ b/engines/avalanche/trip6.cpp @@ -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); }