aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-03-10 10:20:02 +0000
committerTravis Howell2005-03-10 10:20:02 +0000
commite21b1755b5ba3e3d57af75541e0409ba255a1c9d (patch)
tree586a15f27da258c8f348e2db4869f24da9cdbe75
parentab82349dd9548b04f5af8e046cff4135acd965ed (diff)
downloadscummvm-rg350-e21b1755b5ba3e3d57af75541e0409ba255a1c9d.tar.gz
scummvm-rg350-e21b1755b5ba3e3d57af75541e0409ba255a1c9d.tar.bz2
scummvm-rg350-e21b1755b5ba3e3d57af75541e0409ba255a1c9d.zip
Add back some lost code from cyx, for future changes.
svn-id: r17059
-rw-r--r--scumm/wiz_he.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp
index 8ceb4fccce..427497ad8d 100644
--- a/scumm/wiz_he.cpp
+++ b/scumm/wiz_he.cpp
@@ -1411,6 +1411,22 @@ void ScummEngine_v90he::processWizImage(const WizParameters *params) {
}
}
break;
+ case 6:
+ /*if (params->processFlags & 0x40) {
+ int state = (params->processFlags & 0x400) ? params->img.state : 0;
+ int num = params->remapNum;
+ const uint8 *index = params->remapIndex;
+ uint8 *iwiz = getResourceAddress(rtImage, params->img.resNum);
+ assert(iwiz);
+ uint8 *rmap = findWrappedBlock(MKID('RMAP'), iwiz, state, 0) ;
+ assert(rmap);
+ *(uint32 *)(rmap + 8) = TO_BE_32(0x12345678);
+ while (num--) {
+ uint8 idx = *index++;
+ rmap[0xC + idx] = params->remapColor[idx];
+ }
+ }*/
+ break;
// HE 99+
case 8:
createWizEmptyImage(params);