Move SCUMM version checks for settings up monst.er.sou file, to higher level.
svn-id: r25716
This commit is contained in:
parent
402e364852
commit
abd20d59fa
2 changed files with 3 additions and 3 deletions
|
@ -1088,7 +1088,7 @@ int ScummEngine::init() {
|
|||
_imuse->setBase(_res->address[rtSound]);
|
||||
}
|
||||
|
||||
if (_game.version >= 5)
|
||||
if (_game.version >= 5 && _game.version <= 7)
|
||||
_sound->setupSound();
|
||||
|
||||
updateSoundSettings();
|
||||
|
@ -2150,7 +2150,7 @@ void ScummEngine::restart() {
|
|||
}
|
||||
|
||||
// Reinit sound engine
|
||||
if (_game.version >= 5)
|
||||
if (_game.version >= 5 && _game.version <= 7)
|
||||
_sound->setupSound();
|
||||
|
||||
// Re-run bootscript
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue