FREESCAPE: added more detection entries for Driller C64

This commit is contained in:
neuromancer 2023-01-07 15:15:48 -03:00
parent 99409e0cc3
commit d8efa29d8b
2 changed files with 16 additions and 3 deletions

View File

@ -132,7 +132,18 @@ static const ADGameDescription gameDescriptions[] = {
ADGF_TESTING,
GUIO2(GUIO_NOMIDI, GAMEOPTION_AUTOMATIC_DRILLING)
},
{
"driller", // Commodore Force - Jan 94
"",
{
{"DRILLER.C64.EXTRACTED", 0, "511778d3167ff7504d905df507a03ac5", 63490},
AD_LISTEND
},
Common::EN_ANY,
Common::kPlatformC64,
ADGF_TESTING,
GUIO2(GUIO_NOMIDI, GAMEOPTION_AUTOMATIC_DRILLING)
},
{
"driller",
"",

View File

@ -554,8 +554,10 @@ void DrillerEngine::loadAssetsFullGame() {
loadGlobalObjects(&file, 0x1855);
} else if (_targetName.hasPrefix("driller")) {
file.open("driller.c64.extracted");
load8bitBinary(&file, 0x63a6, 4);
//load8bitBinary(&file, 0x58f4, 4);
loadMessagesFixedSize(&file, 0x167a - 0x400, 14, 20);
//loadFonts(&file, 0xae54);
load8bitBinary(&file, 0x8e02 - 0x400, 4);
loadGlobalObjects(&file, 0x1855 - 0x400);
}
} else if (_renderMode == Common::kRenderEGA) {
loadBundledImages();