diff options
author | strangerke | 2011-04-28 08:33:47 +0200 |
---|---|---|
committer | strangerke | 2011-04-28 08:33:47 +0200 |
commit | b95ea8dccde620b0a562ef654870b58a4a668b5d (patch) | |
tree | 85feefaa39d99b0a0ceda0c0587a8330b17e69b1 | |
parent | 8e95310889f7a9c653f5297b9c856377efaa37ea (diff) | |
download | scummvm-rg350-b95ea8dccde620b0a562ef654870b58a4a668b5d.tar.gz scummvm-rg350-b95ea8dccde620b0a562ef654870b58a4a668b5d.tar.bz2 scummvm-rg350-b95ea8dccde620b0a562ef654870b58a4a668b5d.zip |
TSAGE: Fix a little bug in scene 5100, when looking at the speaking bat
-rw-r--r-- | engines/tsage/ringworld_scenes6.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/tsage/ringworld_scenes6.cpp b/engines/tsage/ringworld_scenes6.cpp index 9581b1fffb..97887aade8 100644 --- a/engines/tsage/ringworld_scenes6.cpp +++ b/engines/tsage/ringworld_scenes6.cpp @@ -832,6 +832,7 @@ void Scene5100::Action5::signal() { /*--------------------------------------------------------------------------*/ void Scene5100::HotspotGroup1::doAction(int action) { + // Flesh Eaters Scene5100 *scene = (Scene5100 *)_globals->_sceneManager._scene; switch (action) { @@ -884,11 +885,12 @@ void Scene5100::Hotspot4::doAction(int action) { } void Scene5100::HotspotGroup2::doAction(int action) { + // Bat Scene5100 *scene = (Scene5100 *)_globals->_sceneManager._scene; switch (action) { case CURSOR_LOOK: - SceneItem::display2(5100, _globals->getFlag(62) ? 47 : 23); + SceneItem::display2(5100, _globals->getFlag(108) ? 47 : 23); break; case CURSOR_USE: SceneItem::display2(5100, 29); @@ -1008,6 +1010,7 @@ void Scene5100::Hotspot18::doAction(int action) { } void Scene5100::Hotspot19::doAction(int action) { + // Pillar Scene5100 *scene = (Scene5100 *)_globals->_sceneManager._scene; switch (action) { |