diff options
author | Paul Gilbert | 2013-11-19 09:01:52 -0500 |
---|---|---|
committer | Paul Gilbert | 2013-11-19 09:01:52 -0500 |
commit | 40a936dd112eb8ddd80bc08ffe2c89af23248153 (patch) | |
tree | b18fb228d53331d43c70fbf1161092cb96e5aa8f | |
parent | 0d6b80adb7748e61f79a8a632d9c98b2aeb20d95 (diff) | |
download | scummvm-rg350-40a936dd112eb8ddd80bc08ffe2c89af23248153.tar.gz scummvm-rg350-40a936dd112eb8ddd80bc08ffe2c89af23248153.tar.bz2 scummvm-rg350-40a936dd112eb8ddd80bc08ffe2c89af23248153.zip |
TSAGE: R2R fix for using ladder at bottom of lift shaft
-rw-r--r-- | engines/tsage/ringworld2/ringworld2_scenes1.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/tsage/ringworld2/ringworld2_scenes1.cpp b/engines/tsage/ringworld2/ringworld2_scenes1.cpp index eaa60cadd7..03a4d1d9d1 100644 --- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp +++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp @@ -13350,7 +13350,8 @@ bool Scene1945::Ladder::startAction(CursorType action, Event &event) { } else if ( ((R2_GLOBALS._player._position.x == 197) && (R2_GLOBALS._player._position.y == 158)) || ((R2_GLOBALS._player._position.x == 191) && (R2_GLOBALS._player._position.y == 142)) ) { scene->_sceneMode = 1947; - } else if ((R2_GLOBALS._player._position.x == 221) && (R2_GLOBALS._player._position.y == 142) && (event.mousePos.y >= 30)) { + } else if ((R2_GLOBALS._player._position.x == 154) && (R2_GLOBALS._player._position.y == 50) + && (event.mousePos.y >= 30)) { scene->_sceneMode = 1940; } else { R2_GLOBALS._player.enableControl(CURSOR_USE); @@ -13551,6 +13552,7 @@ void Scene1945::signal() { setAction(&_sequenceManager1, this, _sceneMode, &R2_GLOBALS._player, &_gunpowder, NULL); return; } + _sceneMode = 0; break; case 1947: if (_nextSceneMode1 == 1943) { |