diff options
-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); |