diff options
author | Jonathan Gray | 2003-04-30 05:55:06 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-04-30 05:55:06 +0000 |
commit | f97568e5780dc990d457c184ed4e7906392dd0c9 (patch) | |
tree | 026f94402ccedf68cc4e42662c9ffa95fe5d5751 | |
parent | f359a141da3740c4fb081a54675a639d0f0e2488 (diff) | |
download | scummvm-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
-rw-r--r-- | scumm/script_v5.cpp | 6 |
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() { |