aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v80he.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-04-01 06:30:46 +0000
committerTravis Howell2005-04-01 06:30:46 +0000
commitcdd21c361b1c194a6c0b7f6ef480463d02fcc87c (patch)
tree1c5717b09fd4ace8b9664729dab1e9108015b362 /scumm/script_v80he.cpp
parent65596240d70869900df61ece1812d080c5acd22f (diff)
downloadscummvm-rg350-cdd21c361b1c194a6c0b7f6ef480463d02fcc87c.tar.gz
scummvm-rg350-cdd21c361b1c194a6c0b7f6ef480463d02fcc87c.tar.bz2
scummvm-rg350-cdd21c361b1c194a6c0b7f6ef480463d02fcc87c.zip
Remove resource type argument in wizImage functions, it is always rtImage.
Rename sprite flags/functions Remove unused sprite flags Switch sprite flags back to hex. for easier comparison svn-id: r17319
Diffstat (limited to 'scumm/script_v80he.cpp')
-rw-r--r--scumm/script_v80he.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp
index ebdb6da233..96576f1ac1 100644
--- a/scumm/script_v80he.cpp
+++ b/scumm/script_v80he.cpp
@@ -510,13 +510,10 @@ void ScummEngine_v80he::o80_cursorCommand() {
byte subOp = fetchScriptByte();
switch (subOp) {
- case 0x13: // Loads cursors from another resource
- a = pop();
- loadWizCursor(a, rtInventory, 0);
- break;
+ case 0x13:
case 0x14:
a = pop();
- loadWizCursor(a, rtInventory, 1);
+ loadWizCursor(a);
break;
case 0x90: // SO_CURSOR_ON Turn cursor on
_cursor.state = 1;