aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/scummvm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 9db76bdd23..1598b25618 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -880,7 +880,7 @@ void Scumm::launch() {
if (_version < 7)
VAR(VAR_VERSION) = 21;
- if (!(_features & GF_MACINTOSH) && (_version == 3)) {
+ if (!((_features & GF_MACINTOSH) && (_version == 3))) {
// This is the for the Mac version of Indy3/Loom
VAR(VAR_DEBUGMODE) = _debugMode;
}