diff options
author | Sven Hesse | 2007-07-25 00:01:31 +0000 |
---|---|---|
committer | Sven Hesse | 2007-07-25 00:01:31 +0000 |
commit | 7490b935c5ca769f52c13e92d07f05f8c430836f (patch) | |
tree | f60e7f0b773dc5f1cef16872a203bc16f18e5b5d | |
parent | e0ead7947deb937bcb6e1562e43e9125e78e971b (diff) | |
download | scummvm-rg350-7490b935c5ca769f52c13e92d07f05f8c430836f.tar.gz scummvm-rg350-7490b935c5ca769f52c13e92d07f05f8c430836f.tar.bz2 scummvm-rg350-7490b935c5ca769f52c13e92d07f05f8c430836f.zip |
- Removed Adlib from Woodruff's freatures
- Added a fallback for Woodruff
svn-id: r28187
-rw-r--r-- | engines/gob/detection.cpp | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/engines/gob/detection.cpp b/engines/gob/detection.cpp index d399262a95..93a2b82773 100644 --- a/engines/gob/detection.cpp +++ b/engines/gob/detection.cpp @@ -1085,7 +1085,7 @@ static const GOBGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, kGameTypeWoodruff, - kFeatures640 | kFeaturesAdlib, + kFeatures640, "intro" }, { @@ -1098,7 +1098,7 @@ static const GOBGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, kGameTypeWoodruff, - kFeatures640 | kFeaturesAdlib, + kFeatures640, "intro" }, { @@ -1111,7 +1111,7 @@ static const GOBGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, kGameTypeWoodruff, - kFeatures640 | kFeaturesAdlib, + kFeatures640, "intro" }, { AD_TABLE_END_MARKER, kGameTypeNone, kFeaturesNone, NULL } @@ -1209,6 +1209,19 @@ static const GOBGameDescription fallbackDescs[] = { kFeaturesCD, "intro" }, + { + { + "woodruff", + "unknown", + AD_ENTRY1(0, 0), + UNK_LANG, + kPlatformPC, + Common::ADGF_NO_FLAGS + }, + kGameTypeWoodruff, + kFeatures640, + "intro" + }, }; static const ADFileBasedFallback fileBased[] = { @@ -1220,6 +1233,7 @@ static const ADFileBasedFallback fileBased[] = { { &fallbackDescs[4], { "intro.stk", "scaa.imd", "scba.imd", "scbf.imd", 0 } }, { &fallbackDescs[5], { "intro.stk", "imd.itk", 0 } }, { &fallbackDescs[6], { "intro.stk", "mus_gob3.lic", 0 } }, + { &fallbackDescs[7], { "intro.stk", "woodruff.itk", 0 } }, { 0, { 0 } } }; |