diff options
author | Filippos Karapetis | 2009-07-06 11:15:42 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-07-06 11:15:42 +0000 |
commit | bceacbd9229cbd3ae4e1f14ab802a987f6a9ac81 (patch) | |
tree | 7f723aaad2cba10ad3ade0be33253bf1ec88aa2d | |
parent | 1f3f4ccdd29e227808eaa29affb7db432756092c (diff) | |
download | scummvm-rg350-bceacbd9229cbd3ae4e1f14ab802a987f6a9ac81.tar.gz scummvm-rg350-bceacbd9229cbd3ae4e1f14ab802a987f6a9ac81.tar.bz2 scummvm-rg350-bceacbd9229cbd3ae4e1f14ab802a987f6a9ac81.zip |
Added seChanged the warning displayed when a selector can't be mapped to a debugC - it's perfectly normal not to find certain selectors in certain SCI versions. Also, fixed the SCI version enums
svn-id: r42169
-rw-r--r-- | engines/sci/sci.h | 4 | ||||
-rw-r--r-- | engines/sci/vocabulary.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h index f8cf4289e8..1fa9221fa7 100644 --- a/engines/sci/sci.h +++ b/engines/sci/sci.h @@ -75,8 +75,8 @@ enum SciGameVersions { SCI_VERSION_01_VGA = 3, SCI_VERSION_01_VGA_ODD = 4, SCI_VERSION_1 = 5, - SCI_VERSION_1_1 = 7, - SCI_VERSION_32 = 8 + SCI_VERSION_1_1 = 6, + SCI_VERSION_32 = 7 }; extern const char *versionNames[8]; diff --git a/engines/sci/vocabulary.cpp b/engines/sci/vocabulary.cpp index 144ec4cc73..dd56cdf88a 100644 --- a/engines/sci/vocabulary.cpp +++ b/engines/sci/vocabulary.cpp @@ -472,7 +472,7 @@ int Kernel::findSelector(const char *selectorName) const { return pos; } - warning("Could not map '%s' to any selector", selectorName); + debugC(2, kDebugLevelVM, "Could not map '%s' to any selector\n", selectorName); return -1; } |