diff options
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r-- | scumm/scumm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 6f683e06b0..192d10e5d5 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -1233,7 +1233,7 @@ void ScummEngine::initScummVars() { File f; while (i < 85) { sprintf(buf, "%d.LFL", i); - f.open(buf, _gameDataPath); + f.open(buf); if (f.isOpen() == false) error("Native MIDI support requires Roland patch from LucasArts"); f.close(); @@ -1241,7 +1241,7 @@ void ScummEngine::initScummVars() { } } else if (_gameId == GID_MONKEY_EGA) { File f; - f.open("DISK09.LEC", _gameDataPath); + f.open("DISK09.LEC"); if (f.isOpen() == false) error("Native MIDI support requires Roland patch from LucasArts"); } |