diff options
author | dhewg | 2011-03-19 15:00:10 +0100 |
---|---|---|
committer | dhewg | 2011-03-19 16:04:53 +0100 |
commit | dfa5f743dec33ebd4910d008015dd93b65fb3bd4 (patch) | |
tree | 68b3f4e550e0a94b3383ade2e52351f57dccd4b3 /engines/hugo | |
parent | 79ba16a89d9d498974034de3449c8b7910a884d0 (diff) | |
download | scummvm-rg350-dfa5f743dec33ebd4910d008015dd93b65fb3bd4.tar.gz scummvm-rg350-dfa5f743dec33ebd4910d008015dd93b65fb3bd4.tar.bz2 scummvm-rg350-dfa5f743dec33ebd4910d008015dd93b65fb3bd4.zip |
HUGO: Init volume levels on startup
Diffstat (limited to 'engines/hugo')
-rw-r--r-- | engines/hugo/hugo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp index 231b2a5d51..ec624dd61d 100644 --- a/engines/hugo/hugo.cpp +++ b/engines/hugo/hugo.cpp @@ -176,6 +176,10 @@ Common::Error HugoEngine::run() { _inventory = new InventoryHandler(this); _route = new Route(this); _sound = new SoundHandler(this); + + // Setup mixer + syncSoundSettings(); + _text = new TextHandler(this); _topMenu = new TopMenu(this); |