diff options
-rw-r--r-- | engines/scumm/vars.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/vars.cpp b/engines/scumm/vars.cpp index 0ae5b1f6cc..3ccba043f3 100644 --- a/engines/scumm/vars.cpp +++ b/engines/scumm/vars.cpp @@ -704,11 +704,11 @@ void ScummEngine::initScummVars() { for (int i = 82; i < 85; i++) { sprintf(buf, "%d.LFL", i); if (!Common::File::exists(buf)) - error("Native MIDI support requires Roland patch from LucasArts"); + error("Native MIDI support requires Roland patch from LucasArts, but %s is missing", buf); } } else if (_game.id == GID_MONKEY_EGA) { if (!Common::File::exists("DISK09.LEC")) - error("Native MIDI support requires Roland patch from LucasArts"); + error("Native MIDI support requires Roland patch from LucasArts, but DISK09.LEC is missing"); } VAR(VAR_SOUNDCARD) = 4; } else { |