diff options
author | Florian Kagerer | 2010-12-25 22:10:51 +0000 |
---|---|---|
committer | Florian Kagerer | 2010-12-25 22:10:51 +0000 |
commit | 8347b44fb2ea8166c6bb41bfa12b79ce9a164d38 (patch) | |
tree | 46f023244befe10107cc015968c1b83bd91854f5 | |
parent | 64a8652cd6786fc7c063c28c849be6b8bfdcc454 (diff) | |
download | scummvm-rg350-8347b44fb2ea8166c6bb41bfa12b79ce9a164d38.tar.gz scummvm-rg350-8347b44fb2ea8166c6bb41bfa12b79ce9a164d38.tar.bz2 scummvm-rg350-8347b44fb2ea8166c6bb41bfa12b79ce9a164d38.zip |
KYRA FM-TOWNS: improved cd audio music fading
svn-id: r55039
-rw-r--r-- | engines/kyra/sound_towns.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/kyra/sound_towns.cpp b/engines/kyra/sound_towns.cpp index f648a23231..1bd5af07de 100644 --- a/engines/kyra/sound_towns.cpp +++ b/engines/kyra/sound_towns.cpp @@ -248,8 +248,10 @@ void SoundTowns::beginFadeOut() { _vm->delay(_vm->tickLength()); } - for (int i = 58; i > 0; i--) + for (int i = 58; i > 0; i--) { _driver->setOutputVolume(1, i, i); + _vm->delay(1); + } _driver->setOutputVolume(1, 0, 0); |