aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2004-03-29 07:12:14 +0000
committerTravis Howell2004-03-29 07:12:14 +0000
commitce7239115b535d0c9a8805c3f5ce161626a0f6c3 (patch)
treef3a10ae9981d9eb63018f18365df4cd79f868211
parentbf10f5a616532efee386ba1a5a838736932adfa5 (diff)
downloadscummvm-rg350-ce7239115b535d0c9a8805c3f5ce161626a0f6c3.tar.gz
scummvm-rg350-ce7239115b535d0c9a8805c3f5ce161626a0f6c3.tar.bz2
scummvm-rg350-ce7239115b535d0c9a8805c3f5ce161626a0f6c3.zip
Should have been disabled for Mac. indy3/loom.
Fixes distaff position svn-id: r13423
-rw-r--r--scumm/scumm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index bc80c0b198..65eefc4339 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1357,8 +1357,8 @@ int ScummEngine::scummLoop(int delta) {
VAR(VAR_VIRT_MOUSE_Y) = _virtualMouse.y;
VAR(VAR_MOUSE_X) = _mouse.x;
VAR(VAR_MOUSE_Y) = _mouse.y;
- if ((_features & GF_MACINTOSH) && (_version == 3)) {
- // This is for the Mac version of Indy3/Loom
+ if (!((_features & GF_MACINTOSH) && (_version == 3))) {
+ // This is NOT for the Mac version of Indy3/Loom
VAR(VAR_DEBUGMODE) = _debugMode;
}
}