diff options
author | dhewg | 2011-03-19 14:56:20 +0100 |
---|---|---|
committer | dhewg | 2011-03-19 16:04:52 +0100 |
commit | a3616473aa3c1ee12d90b080be1938ecdacc2992 (patch) | |
tree | 2afdcc20acbbfb26dc629c87c751802c20be4971 /engines | |
parent | d12278b4cce4f8a7cc76bf8868363c6397245322 (diff) | |
download | scummvm-rg350-a3616473aa3c1ee12d90b080be1938ecdacc2992.tar.gz scummvm-rg350-a3616473aa3c1ee12d90b080be1938ecdacc2992.tar.bz2 scummvm-rg350-a3616473aa3c1ee12d90b080be1938ecdacc2992.zip |
DRASACULA: Init volume levels on startup
Diffstat (limited to 'engines')
-rw-r--r-- | engines/drascula/drascula.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index b59ab6f566..19395dcd3f 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -195,8 +195,7 @@ Common::Error DrasculaEngine::run() { loadArchives(); // Setup mixer - _mixer->setVolumeForSoundType(Audio::Mixer::kSpeechSoundType, ConfMan.getInt("speech_volume")); - _mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, ConfMan.getInt("music_volume")); + syncSoundSettings(); currentChapter = 1; // values from 1 to 6 will start each part of game loadedDifferentChapter = 0; |