Skip to content

Commit

Permalink
TSAGE: Bugfix for #3422150 - GUI dialog when clicking on skulls
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Oct 12, 2011
1 parent 8a8fd94 commit bfdd274
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion engines/tsage/ringworld/ringworld_logic.cpp
Expand Up @@ -603,9 +603,10 @@ void NamedHotspot::doAction(int action) {
SceneItem::display(_resNum, _lookLineNum, SET_Y, 20, SET_WIDTH, 200, SET_EXT_BGCOLOR, 7, LIST_END);
break;
default:
SceneHotspot::doAction(action);
break;
}

SceneHotspot::doAction(action);
}

void NamedHotspot::setDetails(int ys, int xs, int ye, int xe, const int resnum, const int lookLineNum, const int useLineNum) {
Expand Down
2 changes: 1 addition & 1 deletion engines/tsage/ringworld/ringworld_scenes6.cpp
Expand Up @@ -1562,7 +1562,7 @@ void Scene5200::Hotspot9::doAction(int action) {
SceneItem::display2(5200, 14);
break;
default:
SceneItem::doAction(action);
SceneHotspot::doAction(action);
break;
}
}
Expand Down

0 comments on commit bfdd274

Please sign in to comment.