Skip to content

Commit

Permalink
TSAGE: R2R - Fix CID 1047260
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Aug 21, 2013
1 parent 4f50702 commit a606467
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/tsage/ringworld2/ringworld2_scenes0.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit a606467

Please sign in to comment.