diff options
-rw-r--r-- | scumm/scumm.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 2d4e576da6..57604deb39 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -1402,7 +1402,11 @@ int ScummEngine::init(GameDetector &detector) { if (_imuse) { _imuse->setBase(res.address[rtSound]); } - _sound->setupSound(); + + // Since MM NES substitutes whole file class we get monster.sou file + // name badly generated, so avoid even attempts to open it + if (!(_features & GF_NES)) + _sound->setupSound(); // Create debugger if (!_debugger) |