Skip to content

Commit

Permalink
AVALANCHE: Fix parentheses in Help::handleMouse().
Browse files Browse the repository at this point in the history
  • Loading branch information
uruk committed Mar 4, 2014
1 parent 80e0137 commit ed39251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/avalanche/help.cpp
Expand Up @@ -190,7 +190,7 @@ bool Help::handleMouse(const Common::Event &event) {

Color highlightColor = kColorLightblue;
// If we clicked on a button or we are holding down the button, we have to highlight it with cyan:
if (((highlightIs != 177) && ((event.type == Common::EVENT_LBUTTONDOWN)) || _holdLeft)) {
if (((highlightIs != 177) && (event.type == Common::EVENT_LBUTTONDOWN)) || _holdLeft) {
_holdLeft = true;
highlightColor = kColorLightcyan;
}
Expand Down

0 comments on commit ed39251

Please sign in to comment.