aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/scicore/resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/scicore/resource.cpp b/engines/sci/scicore/resource.cpp
index 810cd8f150..9b35f206ba 100644
--- a/engines/sci/scicore/resource.cpp
+++ b/engines/sci/scicore/resource.cpp
@@ -695,7 +695,7 @@ int ResourceManager::detectMapVersion() {
// offset set to filesize and 4 more bytes
file.seek(off - 7, SEEK_SET);
if (file.readByte() == 0xFF && file.readUint16LE() == file.size())
- return SCI_VERSION_1_1; // TODO : check if there is a difference between these maps
+ return SCI_VERSION_32; // TODO : check if there is a difference between these maps
return SCI_VERSION_AUTODETECT;
}