[Scummvm-git-logs] scummvm master -> 208def88f8d0494e082d7e6361789e37b3104126
athrxx
noreply at scummvm.org
Sun Jan 5 18:11:40 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
208def88f8 SCUMM: (Mac) - improve missing resources warning
Commit: 208def88f8d0494e082d7e6361789e37b3104126
https://github.com/scummvm/scummvm/commit/208def88f8d0494e082d7e6361789e37b3104126
Author: athrxx (athrxx at scummvm.org)
Date: 2025-01-05T19:10:30+01:00
Commit Message:
SCUMM: (Mac) - improve missing resources warning
For some titles the engine pretends to need the executable
for music, although it doesn't.
Changed paths:
engines/scumm/scumm.cpp
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index aa6ccc2db7e..f1b1eb8a236 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1326,7 +1326,8 @@ Common::Error ScummEngine::init() {
}
GUI::MessageDialog dialog(Common::U32String::format(
- _("Could not find the '%s' Macintosh executable to read resources from. Music and Mac GUI will be disabled"), gameName), _("OK"));
+ _("Could not find the '%s' Macintosh executable to read resources from. %s will be disabled."),
+ gameName, (_game.id == GID_INDY4 || _game.id == GID_MONKEY2 || _game.version > 6) ? _s("The Mac GUI") : _s("The music and the Mac GUI")), _("OK"));
dialog.runModal();
} else if (isUsingOriginalGUI() || _game.id == GID_INDY3 || _game.id == GID_LOOM) {
// FIXME: THIS IS A TEMPORARY WORKAROUND!
More information about the Scummvm-git-logs
mailing list