Don't restart music while changing music volume in Hof and MR.

svn-id: r32069
This commit is contained in:
Johannes Schickel
2008-05-12 19:29:14 +00:00
parent 31a8d984a4
commit 13b60eeb32
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1129,7 +1129,7 @@ int GUI_HoF::sliderHandler(Button *caller) {
if (playSoundEffect)
_vm->snd_playSoundEffect(0x18);
else if (lastMusicCommand >= 0)
_vm->snd_playWanderScoreViaMap(lastMusicCommand, 1);
_vm->snd_playWanderScoreViaMap(lastMusicCommand, 0);
_screen->updateScreen();
return 0;
+1 -1
View File
@@ -1673,7 +1673,7 @@ int GUI_MR::sliderHandler(Button *caller) {
if (playSoundEffect)
_vm->snd_playSoundEffect(0x18, 0xC8);
else if (lastMusicCommand >= 0)
_vm->snd_playWanderScoreViaMap(lastMusicCommand, 1);
_vm->snd_playWanderScoreViaMap(lastMusicCommand, 0);
_screen->updateScreen();
return 0;