aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-04-09 15:12:26 +0000
committerTravis Howell2005-04-09 15:12:26 +0000
commit240a6f740631f87a9eb3f86949e16d8b10cddc4b (patch)
tree2846dcd453d632ac87bced5cce77f666013c521f
parentb12942a8e78c4cc58b9a57514762ac1837a4cd58 (diff)
downloadscummvm-rg350-240a6f740631f87a9eb3f86949e16d8b10cddc4b.tar.gz
scummvm-rg350-240a6f740631f87a9eb3f86949e16d8b10cddc4b.tar.bz2
scummvm-rg350-240a6f740631f87a9eb3f86949e16d8b10cddc4b.zip
Switch back to warning, since it is used in maze
svn-id: r17481
-rw-r--r--scumm/script_v72he.cpp2
-rw-r--r--scumm/wiz_he.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index d1e91d8dd2..2e6acdeeec 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -568,7 +568,7 @@ void ScummEngine_v72he::decodeScriptString(byte *dst, bool scriptString) {
chr = string[num++];
switch(chr) {
case 'b':
- dst += sprintf((char *)dst, "%b", args[val++]);
+ //dst += sprintf((char *)dst, "%b", args[val++]);
break;
case 'c':
*dst++ = args[val++];
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp
index d66648d1a9..ff23a4ca3d 100644
--- a/scumm/wiz_he.cpp
+++ b/scumm/wiz_he.cpp
@@ -974,7 +974,7 @@ uint8 *ScummEngine_v72he::drawWizImage(int resNum, int state, int x1, int y1, in
if (comp == 1) {
// TODO Adding masking for flags 0x80 and 0x100
if (flags & 0x80) {
- error("drawWizImage() unhandled flag 0x80");
+ warning("drawWizImage() unhandled flag 0x80");
} else if (flags & 0x100) {
error("drawWizImage() unhandled flag 0x100");
} else {