diff options
author | Max Horn | 2006-04-26 09:04:51 +0000 |
---|---|---|
committer | Max Horn | 2006-04-26 09:04:51 +0000 |
commit | a28250d6608a897f4ad34b7c6c1463104aa6ae83 (patch) | |
tree | 7105b4d5f38f9c52a3a488504a41f9666974285a | |
parent | 1dba198cbf88059e9033067086a0a7b59917527a (diff) | |
download | scummvm-rg350-a28250d6608a897f4ad34b7c6c1463104aa6ae83.tar.gz scummvm-rg350-a28250d6608a897f4ad34b7c6c1463104aa6ae83.tar.bz2 scummvm-rg350-a28250d6608a897f4ad34b7c6c1463104aa6ae83.zip |
Print a slightly more verbose error message when Roland patch isn't found
svn-id: r22175
-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 { |