aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script_v5.cpp')
-rw-r--r--scumm/script_v5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index 5449ea64c0..95b882ace3 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -647,7 +647,7 @@ void Scumm_v5::o5_cursorCommand() {
// omit for now.
// FIXME: Actually: is this opcode ever called by a non-Loom game?
// Which V3-V5 game besides Loom makes use of custom cursors, ever?
- if ((_gameId != GID_LOOM256) && (_gameId != GID_LOOM)) {
+ if (!(_features & GF_LOOM)) {
warning("setCursorImg called - tell Fingolfin where you saw this!");
setCursorImg(i, j, 1);
}