aboutsummaryrefslogtreecommitdiff
path: root/common/gameDetector.cpp
diff options
context:
space:
mode:
authorMax Horn2002-09-29 23:09:01 +0000
committerMax Horn2002-09-29 23:09:01 +0000
commite9e75ffd0a8ac86c36a13057bfee1719dd8b76f5 (patch)
treebd491f14687b082c5d7e758c673134df59211c0a /common/gameDetector.cpp
parent9dfd298034bea70ff641cfa3f9bbfec92e3fc5fe (diff)
downloadscummvm-rg350-e9e75ffd0a8ac86c36a13057bfee1719dd8b76f5.tar.gz
scummvm-rg350-e9e75ffd0a8ac86c36a13057bfee1719dd8b76f5.tar.bz2
scummvm-rg350-e9e75ffd0a8ac86c36a13057bfee1719dd8b76f5.zip
cleanup
svn-id: r5046
Diffstat (limited to 'common/gameDetector.cpp')
-rw-r--r--common/gameDetector.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp
index 464372fa8f..95d66cea40 100644
--- a/common/gameDetector.cpp
+++ b/common/gameDetector.cpp
@@ -349,9 +349,9 @@ const VersionSettings version_settings[] = {
// {"maniac", "Maniac Mansion", GID_MANIAC, 2, 0, 0,
// GF_SMALL_HEADER | GF_USE_KEY | GF_SMALL_NAMES | GF_16COLOR | GF_OLD_BUNDLE |
// GF_NO_SCALLING},
-// {"zak", "Zak McKracken and the Alien Mindbenders", GID_ZAK, 2, 0, 0,
-// GF_SMALL_HEADER | GF_USE_KEY | GF_SMALL_NAMES | GF_16COLOR | GF_OLD_BUNDLE |
-// GF_NO_SCALLING},
+// {"zak", "Zak McKracken and the Alien Mindbenders", GID_ZAK, 2, 0, 0,
+// GF_SMALL_HEADER | GF_USE_KEY | GF_SMALL_NAMES | GF_16COLOR | GF_OLD_BUNDLE |
+// GF_NO_SCALLING},
// {"indy3", "Indiana Jones and the Last Crusade", GID_INDY3, 2, 0, 0,},
/* Scumm Version 3 */
@@ -431,7 +431,6 @@ bool GameDetector::detectGame()
do {
if (!scumm_stricmp(_exe_name, gnl->filename)) {
_gameId = gnl->id;
- _scummVersion = gnl->major;
_features = gnl->features;
_gameText = gnl->gamename;
@@ -443,7 +442,7 @@ bool GameDetector::detectGame()
debug(1, "Failed game detection");
- return true;
+ return false;
}
const char *GameDetector::getGameName()