From ed392518f54251d7555e20874b995c112f94004c Mon Sep 17 00:00:00 2001 From: uruk Date: Tue, 4 Mar 2014 20:50:25 +0100 Subject: AVALANCHE: Fix parentheses in Help::handleMouse(). --- engines/avalanche/help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3