aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/exereader.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/exereader.cpp b/engines/sci/exereader.cpp
index 111e1f2931..5c069d1304 100644
--- a/engines/sci/exereader.cpp
+++ b/engines/sci/exereader.cpp
@@ -81,7 +81,8 @@ bool isGameExe(Common::SeekableReadStream *exeStream) {
// Check if it's a Mac exe
// Is there a better way to do this?
- int32 offset = MKID_BE(magic) + 28; // Resource map offset
+ // FIXME: MKID_BE() does /not/ work that way.
+ int32 offset = 0; //MKID_BE(magic) + 28; // Resource map offset
if (exeStream->size() <= offset)
return false;