mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-24 05:01:43 +00:00
WINTERMUTE: Add detection for Italian, English and Russian Dead City.
This commit is contained in:
parent
589094e63a
commit
c96ccaa1c3
@ -51,10 +51,17 @@ static ADGameDescription s_fallbackDesc = {
|
||||
};
|
||||
static char s_fallbackGameIdBuf[256];
|
||||
|
||||
static const char *directoryGlobs[] = {
|
||||
"language", // To detect the various languages
|
||||
0
|
||||
};
|
||||
|
||||
class WintermuteMetaEngine : public AdvancedMetaEngine {
|
||||
public:
|
||||
WintermuteMetaEngine() : AdvancedMetaEngine(Wintermute::gameDescriptions, sizeof(ADGameDescription), Wintermute::wintermuteGames) {
|
||||
_singleid = "wintermute";
|
||||
_maxScanDepth = 2;
|
||||
_directoryGlobs = directoryGlobs;
|
||||
}
|
||||
virtual const char *getName() const {
|
||||
return "Wintermute";
|
||||
|
@ -84,16 +84,48 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
ADGF_UNSTABLE,
|
||||
GUIO0()
|
||||
},
|
||||
// Dead City
|
||||
// Dead City (English)
|
||||
{
|
||||
"deadcity",
|
||||
"",
|
||||
AD_ENTRY1s("data.dcp", "7ebfd50d1a22370ed7b079bcaa631d62", 9070205),
|
||||
{
|
||||
{"english.dcp", 0, "c591046d6de7e381d76f70e0787b2b1f", 415935},
|
||||
{"data.dcp", 0, "7ebfd50d1a22370ed7b079bcaa631d62", 9070205},
|
||||
AD_LISTEND
|
||||
},
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_UNSTABLE,
|
||||
GUIO0()
|
||||
},
|
||||
// Dead City (Italian)
|
||||
{
|
||||
"deadcity",
|
||||
"",
|
||||
{
|
||||
{"italian.dcp", 0, "92d8efb94436bec7bd1b7fe0b548192e", 454037},
|
||||
{"data.dcp", 0, "7ebfd50d1a22370ed7b079bcaa631d62", 9070205},
|
||||
AD_LISTEND
|
||||
},
|
||||
Common::IT_ITA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_UNSTABLE,
|
||||
GUIO0()
|
||||
},
|
||||
// Dead City (Russian)
|
||||
{
|
||||
"deadcity",
|
||||
"",
|
||||
{
|
||||
{"russian.dcp", 0, "a0ae71e9e1185596fffb07ad2c951eb9", 653317},
|
||||
{"data.dcp", 0, "7ebfd50d1a22370ed7b079bcaa631d62", 9070205},
|
||||
AD_LISTEND
|
||||
},
|
||||
Common::RU_RUS,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_UNSTABLE,
|
||||
GUIO0()
|
||||
},
|
||||
// Dirty Split (English)
|
||||
{
|
||||
"dirtysplit",
|
||||
|
Loading…
x
Reference in New Issue
Block a user