aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-03-30 03:36:31 +0000
committerTravis Howell2005-03-30 03:36:31 +0000
commitb1da5a46c7d921a198bc2b3ae0cc01846da1df49 (patch)
tree8af959607b07428fd00fb80e207224238a5506f2 /scumm/actor.cpp
parent516b1b3748ddf9e877bcab7d294472dd19168bd4 (diff)
downloadscummvm-rg350-b1da5a46c7d921a198bc2b3ae0cc01846da1df49.tar.gz
scummvm-rg350-b1da5a46c7d921a198bc2b3ae0cc01846da1df49.tar.bz2
scummvm-rg350-b1da5a46c7d921a198bc2b3ae0cc01846da1df49.zip
Switch warnings to errors, to make sure any use isn't missed.
svn-id: r17290
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index f0d4d49833..7078a93d3c 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -1902,11 +1902,11 @@ void ScummEngine::postProcessAuxQueue() {
assert(auxd);
const uint8 *frel = findResourceData(MKID('FREL'), auxd);
if (frel) {
- warning("unhandled FREL block");
+ error("unhandled FREL block");
}
const uint8 *disp = findResourceData(MKID('DISP'), auxd);
if (disp) {
- warning("unhandled DISP block");
+ error("unhandled DISP block");
}
const uint8 *axfd = findResourceData(MKID('AXFD'), auxd);
assert(axfd);
@@ -1925,7 +1925,7 @@ void ScummEngine::postProcessAuxQueue() {
Wiz::copyAuxImage(dst1, dst2, axfd + 10, pvs->w, pvs->h, x, y, w, h);
break;
default:
- warning("unimplemented compression type %d", comp);
+ error("unimplemented compression type %d", comp);
break;
}
}