mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
Add MD5's and packed file overrides for original packed files of the Multilingual English/German/French CD of Drascula
svn-id: r32478
This commit is contained in:
parent
df35925557
commit
ffc64511ca
@ -90,6 +90,54 @@ static const DrasculaGameDescription gameDescriptions[] = {
|
||||
0,
|
||||
},
|
||||
|
||||
{
|
||||
// Drascula English version (original packed files)
|
||||
{
|
||||
"drascula",
|
||||
0,
|
||||
AD_ENTRY1s("packet.001", "c6a8697396e213a18472542d5f547cb4", 32847563),
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformPC,
|
||||
Common::ADGF_NO_FLAGS
|
||||
},
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
},
|
||||
|
||||
{
|
||||
// Drascula German version (original packed files)
|
||||
{
|
||||
"drascula",
|
||||
0,
|
||||
AD_ENTRY1s("packet.003", "e8f4dc6091037329bab4ddb1cba35807", 719728),
|
||||
Common::DE_DEU,
|
||||
Common::kPlatformPC,
|
||||
Common::ADGF_NO_FLAGS
|
||||
},
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
},
|
||||
|
||||
{
|
||||
// Drascula French version (original packed files)
|
||||
{
|
||||
"drascula",
|
||||
0,
|
||||
AD_ENTRY1s("packet.002", "4401123400f22f212b89f15fb4b43013", 721122),
|
||||
Common::FR_FRA,
|
||||
Common::kPlatformPC,
|
||||
Common::ADGF_NO_FLAGS
|
||||
},
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
},
|
||||
|
||||
{
|
||||
// Drascula Spanish version
|
||||
{
|
||||
|
@ -108,6 +108,11 @@ int DrasculaEngine::init() {
|
||||
}
|
||||
|
||||
_arj.registerArchive("packet.001");
|
||||
// Use override files for non-English versions
|
||||
if (_lang == 3) // French
|
||||
_arj.registerArchive("packet.002");
|
||||
else if (_lang == 2) // German
|
||||
_arj.registerArchive("packet.003");
|
||||
_arj.enableFallback(true);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user