aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruruk2014-03-04 20:50:25 +0100
committeruruk2014-03-04 20:50:25 +0100
commited392518f54251d7555e20874b995c112f94004c (patch)
tree564d6d739b1e997cbc5a23973ea6a46dd9ec04de
parent80e01378d34217e572825bd6aa1e196247cc5b40 (diff)
downloadscummvm-rg350-ed392518f54251d7555e20874b995c112f94004c.tar.gz
scummvm-rg350-ed392518f54251d7555e20874b995c112f94004c.tar.bz2
scummvm-rg350-ed392518f54251d7555e20874b995c112f94004c.zip
AVALANCHE: Fix parentheses in Help::handleMouse().
-rw-r--r--engines/avalanche/help.cpp2
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;
}