aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v5.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-04-30 05:55:06 +0000
committerJonathan Gray2003-04-30 05:55:06 +0000
commitf97568e5780dc990d457c184ed4e7906392dd0c9 (patch)
tree026f94402ccedf68cc4e42662c9ffa95fe5d5751 /scumm/script_v5.cpp
parentf359a141da3740c4fb081a54675a639d0f0e2488 (diff)
downloadscummvm-rg350-f97568e5780dc990d457c184ed4e7906392dd0c9.tar.gz
scummvm-rg350-f97568e5780dc990d457c184ed4e7906392dd0c9.tar.bz2
scummvm-rg350-f97568e5780dc990d457c184ed4e7906392dd0c9.zip
add patch #729633 from erik that lets you turn the straw to gold, wonder if loom ega is finishable now :)
svn-id: r7211
Diffstat (limited to 'scumm/script_v5.cpp')
-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() {