diff options
author | Travis Howell | 2004-07-22 04:42:43 +0000 |
---|---|---|
committer | Travis Howell | 2004-07-22 04:42:43 +0000 |
commit | 2ab9807dd812845701fc144e49f0fd63974ada8c (patch) | |
tree | ad0201956d0e570f003d139b57cc0c7f6992f5df | |
parent | 6a1800a2cd9d5c337307a06767e494b16af6e244 (diff) | |
download | scummvm-rg350-2ab9807dd812845701fc144e49f0fd63974ada8c.tar.gz scummvm-rg350-2ab9807dd812845701fc144e49f0fd63974ada8c.tar.bz2 scummvm-rg350-2ab9807dd812845701fc144e49f0fd63974ada8c.zip |
Should not be set for any scumm3 games.
svn-id: r14299
-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; } |