diff options
-rw-r--r-- | scumm/script_v5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 19438b80bf..56e51a3d37 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -712,7 +712,7 @@ void ScummEngine_v5::o5_cursorCommand() { break; } - if (!(_gameId == GID_LOOM || _gameId == GID_INDY3)) { + if (_version >= 4) { VAR(VAR_CURSORSTATE) = _cursor.state; VAR(VAR_USERPUT) = _userPut; } |