diff options
author | Greg Frieger | 2009-03-14 08:41:11 +0000 |
---|---|---|
committer | Greg Frieger | 2009-03-14 08:41:11 +0000 |
commit | d00a9e9a7d2ca2520c107d9e2481759bc4cc9251 (patch) | |
tree | 12b96fef32fc1a04099e3bbcc6628624a5269649 /engines/sci/scicore | |
parent | b5cc1eec7ef7ac6148f91c92566cf8f7f1fce4c2 (diff) | |
download | scummvm-rg350-d00a9e9a7d2ca2520c107d9e2481759bc4cc9251.tar.gz scummvm-rg350-d00a9e9a7d2ca2520c107d9e2481759bc4cc9251.tar.bz2 scummvm-rg350-d00a9e9a7d2ca2520c107d9e2481759bc4cc9251.zip |
Fixed SCI32 Map detection
svn-id: r39384
Diffstat (limited to 'engines/sci/scicore')
-rw-r--r-- | engines/sci/scicore/resource.cpp | 2 |
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; } |