diff options
author | Travis Howell | 2005-09-26 00:01:02 +0000 |
---|---|---|
committer | Travis Howell | 2005-09-26 00:01:02 +0000 |
commit | 45e0baba0a6415f2e112b76a11087d7ed9d56151 (patch) | |
tree | d89453117dd9e1d2f3a72ed520b0226c031ad703 /scumm | |
parent | da65bc328bdb1eedcf156dfb50295d1ce757d7a9 (diff) | |
download | scummvm-rg350-45e0baba0a6415f2e112b76a11087d7ed9d56151.tar.gz scummvm-rg350-45e0baba0a6415f2e112b76a11087d7ed9d56151.tar.bz2 scummvm-rg350-45e0baba0a6415f2e112b76a11087d7ed9d56151.zip |
Fix regression when using MIDI in Loom demo.
svn-id: r18881
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/vars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/vars.cpp b/scumm/vars.cpp index 843bb372c3..78c2e47ad6 100644 --- a/scumm/vars.cpp +++ b/scumm/vars.cpp @@ -639,7 +639,7 @@ void ScummEngine::initScummVars() { if (_gameId == GID_LOOM) { char buf[50]; Common::File f; - for (int i = 82; i < 86; i++) { + 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"); |