aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/scumm/he/wiz_he.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/he/wiz_he.cpp b/engines/scumm/he/wiz_he.cpp
index b555dfeb65..d9ece1cb1c 100644
--- a/engines/scumm/he/wiz_he.cpp
+++ b/engines/scumm/he/wiz_he.cpp
@@ -553,7 +553,7 @@ void Wiz::decompressWizImage(uint8 *dst, int dstPitch, const uint8 *src, const C
int h, w, xoff, dstInc;
if (type == kWizXMap) {
- assert(palPtr != 0 && xmapPtr != 0);
+ assert(xmapPtr != 0);
}
if (type == kWizRMap) {
assert(palPtr != 0);
@@ -619,7 +619,7 @@ void Wiz::decompressWizImage(uint8 *dst, int dstPitch, const uint8 *src, const C
}
while (code--) {
if (type == kWizXMap) {
- *dstPtr = xmapPtr[palPtr[*dataPtr] * 256 + *dstPtr];
+ *dstPtr = xmapPtr[*dataPtr * 256 + *dstPtr];
}
if (type == kWizRMap) {
*dstPtr = palPtr[*dataPtr];
@@ -647,7 +647,7 @@ void Wiz::decompressWizImage(uint8 *dst, int dstPitch, const uint8 *src, const C
}
while (code--) {
if (type == kWizXMap) {
- *dstPtr = xmapPtr[palPtr[*dataPtr++] * 256 + *dstPtr];
+ *dstPtr = xmapPtr[*dataPtr++ * 256 + *dstPtr];
}
if (type == kWizRMap) {
*dstPtr = palPtr[*dataPtr++];