diff options
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r-- | scumm/script_v72he.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 5d939d03fd..36045be460 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -1372,6 +1372,9 @@ void ScummEngine_v72he::o72_unknownC1() { } void ScummEngine_v72he::drawWizImage(int restype, int resnum, int state, int x1, int y1, int flags) { + if (flags & 64) + error("Polygon Wiz image is unimplemented"); + const uint8 *dataPtr = getResourceAddress(restype, resnum); if (dataPtr) { const uint8 *wizh = findWrappedBlock(MKID('WIZH'), dataPtr, state, 0); |