diff options
author | Travis Howell | 2004-09-18 01:21:14 +0000 |
---|---|---|
committer | Travis Howell | 2004-09-18 01:21:14 +0000 |
commit | 81be6793425ee3e47976f4fc4e79a246dbc88e2e (patch) | |
tree | 02033f223de5de422b960ff650621e6b90b2e921 | |
parent | a0312bd8cb832b37263d6c1b24911a37464c68af (diff) | |
download | scummvm-rg350-81be6793425ee3e47976f4fc4e79a246dbc88e2e.tar.gz scummvm-rg350-81be6793425ee3e47976f4fc4e79a246dbc88e2e.tar.bz2 scummvm-rg350-81be6793425ee3e47976f4fc4e79a246dbc88e2e.zip |
Neeed to know where polygons are renderered
svn-id: r15152
-rw-r--r-- | scumm/script_v72he.cpp | 3 | ||||
-rw-r--r-- | scumm/script_v80he.cpp | 2 |
2 files changed, 5 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); diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp index beefe9ae5d..6b61e8a3e5 100644 --- a/scumm/script_v80he.cpp +++ b/scumm/script_v80he.cpp @@ -604,6 +604,8 @@ void ScummEngine_v80he::o80_setState() { } void ScummEngine_v80he::o80_drawWizPolygon() { + error("o80_drawWizPolygon"); + int xy1 = pop(); int resnum = pop(); |