aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hoops2011-01-31 23:09:22 +0000
committerMatthew Hoops2011-01-31 23:09:22 +0000
commit956dc54e3d14fe7ae113ffa3d535fdc64f684616 (patch)
tree0694e7b6dc3ee7589ddd5658b6bc9e852d85afb2
parent4c8a9ab24ae17d34f9e7323d7b83c77b8ac68ece (diff)
downloadscummvm-rg350-956dc54e3d14fe7ae113ffa3d535fdc64f684616.tar.gz
scummvm-rg350-956dc54e3d14fe7ae113ffa3d535fdc64f684616.tar.bz2
scummvm-rg350-956dc54e3d14fe7ae113ffa3d535fdc64f684616.zip
SCI: Update the Mac version detection comments
svn-id: r55697
-rw-r--r--engines/sci/resource.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index 3362259402..55a8689f5f 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -2184,8 +2184,10 @@ void ResourceManager::detectSciVersion() {
if (_volVersion == kResVersionSci11Mac) {
// SCI32 doesn't have the resource.cfg file, so we can figure out
- // which of the games are SCI1.1.
- // TODO: Decide between SCI2 and SCI2.1
+ // which of the games are SCI1.1. Note that there are no Mac SCI2 games.
+ // Yes, that means that GK1 Mac is SCI2.1 and not SCI2.
+
+ // TODO: Decide between SCI2.1 and SCI3
if (Common::File::exists("resource.cfg"))
s_sciVersion = SCI_VERSION_1_1;
else