aboutsummaryrefslogtreecommitdiff
path: root/scumm/wiz_he.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-01 03:17:45 +0000
committerTravis Howell2005-05-01 03:17:45 +0000
commitcb6c2b9da5b49a8ef8617766d6e4421d8e8c0150 (patch)
tree0edc641aab5ea81a1651a46a3632a564ce319f7c /scumm/wiz_he.cpp
parent343debba1e3a097fbe47edad1ae4deb3a1a252e0 (diff)
downloadscummvm-rg350-cb6c2b9da5b49a8ef8617766d6e4421d8e8c0150.tar.gz
scummvm-rg350-cb6c2b9da5b49a8ef8617766d6e4421d8e8c0150.tar.bz2
scummvm-rg350-cb6c2b9da5b49a8ef8617766d6e4421d8e8c0150.zip
Add extra cases for readdemo.
svn-id: r17879
Diffstat (limited to 'scumm/wiz_he.cpp')
-rw-r--r--scumm/wiz_he.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp
index 825ea5610e..11ef292fb2 100644
--- a/scumm/wiz_he.cpp
+++ b/scumm/wiz_he.cpp
@@ -1016,10 +1016,11 @@ uint8 *ScummEngine_v72he::drawWizImage(int resNum, int state, int x1, int y1, in
case 1:
// TODO Adding masking for flags 0x80 and 0x100
if (flags & 0x80) {
+ // Used in maze
warning("drawWizImage: Unhandled flag 0x80");
- }
- if (flags & 0x100) {
- error("drawWizImage: Unhandled flag 0x100");
+ } else if (flags & 0x100) {
+ // Used in readdemo
+ warning("drawWizImage: Unhandled flag 0x100");
}
_wiz.copyWizImage(dst, wizd, cw, ch, x1, y1, width, height, &rScreen, palPtr);
break;