From 96c493d94bb2bb63fb0e2d5b8a21f19e960a77e2 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Tue, 5 Oct 2004 14:05:23 +0000 Subject: Missed spot svn-id: r15420 --- scumm/actor.cpp | 2 +- scumm/akos.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'scumm') diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 75d830c5c8..c95968986e 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1039,7 +1039,7 @@ void Actor::drawActorCostume(bool hitTestMode) { } bcr->_shadow_mode = _shadowMode; - if (_vm->_features & GF_SMALL_HEADER) + if ((_vm->_features & GF_SMALL_HEADER) || _vm->_heversion >= 71) bcr->_shadow_table = NULL; else if (_vm->_heversion == 70) bcr->_shadow_table = _vm->_HEV7ActorPalette; diff --git a/scumm/akos.cpp b/scumm/akos.cpp index ee416227da..b03a3d710b 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -1240,6 +1240,8 @@ byte AkosRenderer::codec32(int xmoveCur, int ymoveCur) { byte *dstPtr = _outptr + dst.left + dst.top * _outwidth; + for (int i = 0; i < 256; i++) + _vm->gdi._wizImagePalette[i] = i; _vm->gdi.decompressWizImage(dstPtr, _outwidth, dst, _srcptr, src); return 0; } -- cgit v1.2.3