diff options
-rw-r--r-- | engines/composer/composer.cpp | 8 | ||||
-rw-r--r-- | engines/composer/detection.cpp | 26 |
2 files changed, 32 insertions, 2 deletions
diff --git a/engines/composer/composer.cpp b/engines/composer/composer.cpp index 538bd94721..085ce815dd 100644 --- a/engines/composer/composer.cpp +++ b/engines/composer/composer.cpp @@ -81,8 +81,12 @@ Common::Error ComposerEngine::run() { _directoriesToStrip = 1; if (!_bookIni.loadFromFile("book.ini")) { _directoriesToStrip = 0; - if (!_bookIni.loadFromFile("programs/book.ini")) - error("failed to find book.ini"); + if (!_bookIni.loadFromFile("programs/book.ini")) { + // mac version? + if (!_bookIni.loadFromFile("Darby the Dragon.ini")) + if (!_bookIni.loadFromFile("Gregory.ini")) + error("failed to find book.ini"); + } } uint width = 640; diff --git a/engines/composer/detection.cpp b/engines/composer/detection.cpp index 3c7d9f9cd5..a0071930ff 100644 --- a/engines/composer/detection.cpp +++ b/engines/composer/detection.cpp @@ -124,6 +124,19 @@ static const ComposerGameDescription gameDescriptions[] = { GType_ComposerV2 }, + { + { + "darby", + 0, + AD_ENTRY1("Darby the Dragon.ini", "d81f9214936fa70d42fc578908d4bb3d"), + Common::EN_ANY, + Common::kPlatformMacintosh, + ADGF_NO_FLAGS, + Common::GUIO_NONE + }, + GType_ComposerV2 + }, + { // Provided by Strangerke, "CD-Rom 100% Malin" Pack { "darby", @@ -154,6 +167,19 @@ static const ComposerGameDescription gameDescriptions[] = { GType_ComposerV2 }, + { + { + "gregory", + 0, + AD_ENTRY1("Gregory.ini", "fa82f14731f28c7379c5a106df07a0d6"), + Common::EN_ANY, + Common::kPlatformMacintosh, + ADGF_NO_FLAGS, + Common::GUIO_NONE + }, + GType_ComposerV2 + }, + { // Provided by Strangerke, "CD-Rom 100% Malin" Pack { "gregory", |