aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2008-12-26 12:27:55 +0000
committerTravis Howell2008-12-26 12:27:55 +0000
commit2ffaf0ee1a508b0fa8ed9b46013bc41bd7e5ce88 (patch)
treefdc395c51be24c9f87c4868f0318e72fac5d988d /engines
parentd18d2d72a8ce4688042fecb53481c8cc67d284f6 (diff)
downloadscummvm-rg350-2ffaf0ee1a508b0fa8ed9b46013bc41bd7e5ce88.tar.gz
scummvm-rg350-2ffaf0ee1a508b0fa8ed9b46013bc41bd7e5ce88.tar.bz2
scummvm-rg350-2ffaf0ee1a508b0fa8ed9b46013bc41bd7e5ce88.zip
Fix assert when playing Safari Snapshot in Blue's ABC Time Activities, caused by code difference in earlier HE games.
svn-id: r35558
Diffstat (limited to 'engines')
-rw-r--r--engines/scumm/he/wiz_he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/he/wiz_he.cpp b/engines/scumm/he/wiz_he.cpp
index 45b3af339e..8502db6a63 100644
--- a/engines/scumm/he/wiz_he.cpp
+++ b/engines/scumm/he/wiz_he.cpp
@@ -1611,7 +1611,7 @@ void Wiz::displayWizComplexImage(const WizParameters *params) {
if (params->processFlags & kWPFDstResNum) {
dstResNum = params->dstResNum;
}
- if (params->processFlags & kWPFRemapPalette) {
+ if (_vm->_game.heversion >= 99 && params->processFlags & kWPFRemapPalette) {
remapWizImagePal(params);
flags |= kWIFRemapPalette;
}