diff options
-rw-r--r-- | engines/tsage/ringworld2/ringworld2_scenes0.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/tsage/ringworld2/ringworld2_scenes0.cpp b/engines/tsage/ringworld2/ringworld2_scenes0.cpp index f41add96b5..c175600115 100644 --- a/engines/tsage/ringworld2/ringworld2_scenes0.cpp +++ b/engines/tsage/ringworld2/ringworld2_scenes0.cpp @@ -5587,7 +5587,8 @@ GfxSurface Scene600::Actor4::getFrame() { } bool Scene600::Doorway::startAction(CursorType action, Event &event) { - if ((action < CURSOR_WALK) && (action >= R2CURSORS_START)) + // CHECKME: The original is checking is action == 0. To be verified. + if (action == INV_NONE) return false; if (action != CURSOR_USE) |