diff options
author | Sven Hesse | 2014-01-31 12:04:08 +0100 |
---|---|---|
committer | Sven Hesse | 2014-01-31 12:04:08 +0100 |
commit | ca861961a9ba5a804fd3248ea5de5ce3a0f2b74a (patch) | |
tree | 73abdb07c76e7ab03ba8eb4fb3df3ac27913b5c6 /engines/gob/detection | |
parent | edacb7ada78d31985ea85945432bf2969e1019cc (diff) | |
download | scummvm-rg350-ca861961a9ba5a804fd3248ea5de5ce3a0f2b74a.tar.gz scummvm-rg350-ca861961a9ba5a804fd3248ea5de5ce3a0f2b74a.tar.bz2 scummvm-rg350-ca861961a9ba5a804fd3248ea5de5ce3a0f2b74a.zip |
GOB: Add a game type and detection table for Croustibat
Diffstat (limited to 'engines/gob/detection')
-rw-r--r-- | engines/gob/detection/tables.h | 2 | ||||
-rw-r--r-- | engines/gob/detection/tables_crousti.h | 45 |
2 files changed, 47 insertions, 0 deletions
diff --git a/engines/gob/detection/tables.h b/engines/gob/detection/tables.h index 271f75af79..d042dfeede 100644 --- a/engines/gob/detection/tables.h +++ b/engines/gob/detection/tables.h @@ -55,6 +55,7 @@ static const PlainGameDescriptor gobGames[] = { {"ajworld", "A.J.'s World of Discovery"}, {"gob3", "Goblins Quest 3"}, {"gob3cd", "Goblins Quest 3 CD"}, + {"crousti", "Croustibat"}, {"lit1", "Lost in Time Part 1"}, {"lit2", "Lost in Time Part 2"}, {"lit", "Lost in Time"}, @@ -110,6 +111,7 @@ static const GOBGameDescription gameDescriptions[] = { #include "gob/detection/tables_adi4.h" // The ADI / Addy 4 series #include "gob/detection/tables_adibou.h" // The Adibou / Addy Junior series #include "gob/detection/tables_ajworld.h" // A.J.'s World of Discovery / ADI Jr. + #include "gob/detection/tables_crousti.h" // Croustibat { AD_TABLE_END_MARKER, kGameTypeNone, kFeaturesNone, 0, 0, 0} }; diff --git a/engines/gob/detection/tables_crousti.h b/engines/gob/detection/tables_crousti.h new file mode 100644 index 0000000000..66c54bf354 --- /dev/null +++ b/engines/gob/detection/tables_crousti.h @@ -0,0 +1,45 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* Detection tables for Croustibat. */ + +#ifndef GOB_DETECTION_TABLES_CROUSTI_H +#define GOB_DETECTION_TABLES_CROUSTI_H + +// -- DOS VGA Floppy -- + +{ + { + "crousti", + "", + AD_ENTRY1s("intro.stk", "63fd795818fa72c32b903bbd99e18ea1", 851926), + ES_ESP, + kPlatformDOS, + ADGF_NO_FLAGS, + GUIO2(GUIO_NOSUBTITLES, GUIO_NOSPEECH) + }, + kGameTypeCrousti, + kFeaturesAdLib, + 0, 0, 0 +}, + +#endif // GOB_DETECTION_TABLES_CROUSTI_H |