aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/script_v5.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index 56c9b9d61d..0916729919 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -666,8 +666,10 @@ void Scumm_v5::o5_cursorCommand() {
break;
}
- _vars[VAR_CURSORSTATE] = _cursor.state;
- _vars[VAR_USERPUT] = _userPut;
+ if (!(_features & GF_OLD_BUNDLE) && _gameId != GID_INDY3_256) {
+ _vars[VAR_CURSORSTATE] = _cursor.state;
+ _vars[VAR_USERPUT] = _userPut;
+ }
}
void Scumm_v5::o5_cutscene() {