diff options
author | Eugene Sandulenko | 2007-03-02 15:21:34 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-03-02 15:21:34 +0000 |
commit | 8ab81824abad92269300a1647982dacb216bd68c (patch) | |
tree | d340191ff3bb4aa3685425cc4bccc73b1036232f /engines | |
parent | c2dbd22692f3135252676f1aad4f0c3057b3f1bc (diff) | |
download | scummvm-rg350-8ab81824abad92269300a1647982dacb216bd68c.tar.gz scummvm-rg350-8ab81824abad92269300a1647982dacb216bd68c.tar.bz2 scummvm-rg350-8ab81824abad92269300a1647982dacb216bd68c.zip |
Fix bug #1667806: "GOB: wrong detection"
svn-id: r25924
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/detection.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/engines/gob/detection.cpp b/engines/gob/detection.cpp index 96d4759323..9b48407a10 100644 --- a/engines/gob/detection.cpp +++ b/engines/gob/detection.cpp @@ -912,6 +912,18 @@ static const GOBGameDescription fallbackDescs[] = { GF_GOB2 | GF_CD, "intro" }, + { + { + "bargon", + "", + AD_ENTRY1(0, 0), + UNK_LANG, + kPlatformPC, + Common::ADGF_NO_FLAGS + }, + GF_BARGON, + "intro" + }, }; static const ADFileBasedFallback fileBased[] = { @@ -920,6 +932,7 @@ static const ADFileBasedFallback fileBased[] = { { &fallbackDescs[2], { "intro.stk", 0 } }, { &fallbackDescs[2], { "intro.stk", "disk2.stk", "disk3.stk", 0 } }, { &fallbackDescs[3], { "intro.stk", "gobnew.lic", 0 } }, + { &fallbackDescs[4], { "intro.stk", "scaa.imd", "scba.imd", "scbf.imd", 0 } }, { 0, { 0 } } }; |