diff options
author | uruk | 2014-03-04 20:50:25 +0100 |
---|---|---|
committer | uruk | 2014-03-04 20:50:25 +0100 |
commit | ed392518f54251d7555e20874b995c112f94004c (patch) | |
tree | 564d6d739b1e997cbc5a23973ea6a46dd9ec04de /engines/avalanche | |
parent | 80e01378d34217e572825bd6aa1e196247cc5b40 (diff) | |
download | scummvm-rg350-ed392518f54251d7555e20874b995c112f94004c.tar.gz scummvm-rg350-ed392518f54251d7555e20874b995c112f94004c.tar.bz2 scummvm-rg350-ed392518f54251d7555e20874b995c112f94004c.zip |
AVALANCHE: Fix parentheses in Help::handleMouse().
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/avalanche/help.cpp b/engines/avalanche/help.cpp index 2388aae095..8584bfa78c 100644 --- a/engines/avalanche/help.cpp +++ b/engines/avalanche/help.cpp @@ -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; } |