Skip to content

Commit

Permalink
TSAGE: Disable right click in R2R Scene 1330
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Feb 18, 2012
1 parent 0ff6028 commit 975801b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/tsage/core.cpp
Expand Up @@ -4107,7 +4107,8 @@ void SceneHandler::process(Event &event) {

// Check for displaying right-click dialog
if ((event.eventType == EVENT_BUTTON_DOWN) && (event.btnState == BTNSHIFT_RIGHT) &&
g_globals->_player._uiEnabled) {
g_globals->_player._uiEnabled &&
((g_vm->getGameID() != GType_Ringworld2) || (R2_GLOBALS._sceneManager._sceneNumber != 1330))) {
g_globals->_game->rightClick();

event.handled = true;
Expand Down

0 comments on commit 975801b

Please sign in to comment.