diff options
author | Travis Howell | 2005-05-11 01:02:33 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-11 01:02:33 +0000 |
commit | 5e0884ae7e2058ea22557881d9938648b674c78a (patch) | |
tree | 4910142ecb2b81d3742c2ccad6af4e1ac0bc90e5 | |
parent | 8cf2a8abecad7ff41f1eefadb0a4b6503427ee9f (diff) | |
download | scummvm-rg350-5e0884ae7e2058ea22557881d9938648b674c78a.tar.gz scummvm-rg350-5e0884ae7e2058ea22557881d9938648b674c78a.tar.bz2 scummvm-rg350-5e0884ae7e2058ea22557881d9938648b674c78a.zip |
Fix compile.
svn-id: r18042
-rw-r--r-- | kyra/kyra.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kyra/kyra.cpp b/kyra/kyra.cpp index 641a490430..051c1a9c59 100644 --- a/kyra/kyra.cpp +++ b/kyra/kyra.cpp @@ -106,8 +106,8 @@ KyraEngine::KyraEngine(GameDetector *detector, OSystem *syst) warning("Sound initialization failed."); } - _mixer->setVolumeForSoundType(Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume")); - _mixer->setVolumeForSoundType(Mixer::kMusicSoundType, ConfMan.getInt("music_volume")); + _mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume")); + _mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, ConfMan.getInt("music_volume")); // gets the game if (detector->_game.features & GF_KYRA1) { |