From c3032f7742f48551eb1d00f771c56f2b03f0931d Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 21 Aug 2019 21:02:33 +0200 Subject: [PATCH] HDB: Remove excess calls to stopVoices() --- engines/hdb/hdb.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index b1fbb6f5e70..1a8c81160d0 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -200,7 +200,6 @@ void HDBGame::changeGameState() { break; case GAME_PLAY: _menu->startMenu(); - _sound->stopVoices(); _gameState = GAME_MENU; break; case GAME_LOADING: @@ -1011,11 +1010,6 @@ Common::Error HDBGame::run() { _map->drawForegrounds(); _ai->animateTargets(); - // Check for voice to interrupt - if (!_window->dialogActive() && !_window->dialogChoiceActive() && !_window->msgBarActive()) { - _sound->stopVoices(); - } - _window->drawDialog(); _window->drawDialogChoice(); _window->drawInventory();