diff options
author | Paul Gilbert | 2012-01-08 21:03:42 +1100 |
---|---|---|
committer | Paul Gilbert | 2012-01-08 21:03:42 +1100 |
commit | 5a9c189b22cb40fc669a42bd8a91fe2668818a79 (patch) | |
tree | e648f36fcef841f225ca61218cca176ecfc2f187 | |
parent | 12d1a9d37f716d8aae4e373705d7f8beec1b8842 (diff) | |
download | scummvm-rg350-5a9c189b22cb40fc669a42bd8a91fe2668818a79.tar.gz scummvm-rg350-5a9c189b22cb40fc669a42bd8a91fe2668818a79.tar.bz2 scummvm-rg350-5a9c189b22cb40fc669a42bd8a91fe2668818a79.zip |
TSAGE: Fix R2R crashes saying 'unknown message'
-rw-r--r-- | engines/tsage/ringworld2/ringworld2_logic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/tsage/ringworld2/ringworld2_logic.cpp b/engines/tsage/ringworld2/ringworld2_logic.cpp index 1a9a03b37c..fa7895f407 100644 --- a/engines/tsage/ringworld2/ringworld2_logic.cpp +++ b/engines/tsage/ringworld2/ringworld2_logic.cpp @@ -342,6 +342,7 @@ void SceneExt::loadScene(int sceneNum) { bool SceneExt::display(CursorType action, Event &event) { switch (action) { case CURSOR_CROSSHAIRS: + case CURSOR_WALK: return false; case CURSOR_LOOK: SceneItem::display2(1, R2_GLOBALS._randomSource.getRandomNumber(4)); |