aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v8.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index 86b4c7a224..45b906ead1 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -796,8 +796,9 @@ void Scumm_v8::o8_cursorCommand() {
break;
case 0xDE: // SO_CURSOR_SOFT_ON Turn soft cursor on
_cursor.state++;
+ // FIXME is this check right?
if (_cursor.state > 1)
- error("Cursor state greater than 1 in script");
+ warning("Cursor state %d greater than 1 in script", _cursor.state);
verbMouseOver(0);
break;
case 0xDF: // SO_CURSOR_SOFT_OFF Turn soft cursor off