aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/script_v5.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index be17c23b3c..634c295d60 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -623,8 +623,11 @@ void Scumm_v5::o5_cursorCommand() {
case 10: /* set cursor img */
i = getVarOrDirectByte(0x80);
j = getVarOrDirectByte(0x40);
- if (_gameId != GID_LOOM256)
+ // cursor image in both Looms is based on image from charset
+ // omit for now
+ if ((_gameId != GID_LOOM256) && (_gameId != GID_LOOM)) {
setCursorImg(i, j, 1);
+ }
break;
case 11: /* set cursor hotspot */
i = getVarOrDirectByte(0x80);