aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-08-25 11:17:16 +0000
committerTravis Howell2004-08-25 11:17:16 +0000
commit742e023e855c63ffa60c317c56911024634339b9 (patch)
treef53554a22a3aed35ba6b9ce1725c18fc07168956 /scumm
parente5855ab0a9d0bbf7fc4d34345be895e06b864508 (diff)
downloadscummvm-rg350-742e023e855c63ffa60c317c56911024634339b9.tar.gz
scummvm-rg350-742e023e855c63ffa60c317c56911024634339b9.tar.bz2
scummvm-rg350-742e023e855c63ffa60c317c56911024634339b9.zip
Add a few cases for later games.
svn-id: r14749
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v7he.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index 63f0338c38..b3b4caf48a 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -419,6 +419,12 @@ void ScummEngine_v7he::o7_cursorCommand() {
int subOp = fetchScriptByte();
switch (subOp) {
+ case 0x13: // HE 7.2 (Not all games)
+ case 0x14:
+ // Maybe load cursor image
+ a = pop();
+ warning("o7_cursorCommand: case %d (%d)", subOp, a);
+ break;
case 0x90: // SO_CURSOR_ON Turn cursor on
_cursor.state = 1;
verbMouseOver(0);