aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/game_manager.h2
-rw-r--r--engines/titanic/sound/music_room_handler.cpp5
2 files changed, 2 insertions, 5 deletions
diff --git a/engines/titanic/game_manager.h b/engines/titanic/game_manager.h
index 89c40d0356..c319e18e22 100644
--- a/engines/titanic/game_manager.h
+++ b/engines/titanic/game_manager.h
@@ -81,8 +81,8 @@ public:
CInputHandler _inputHandler;
CInputTranslator _inputTranslator;
CTreeItem *_dragItem;
- CMusicRoom _musicRoom;
CSound _sound;
+ CMusicRoom _musicRoom;
public:
CGameManager(CProjectItem *project, CGameView *gameView, Audio::Mixer *mixer);
~CGameManager();
diff --git a/engines/titanic/sound/music_room_handler.cpp b/engines/titanic/sound/music_room_handler.cpp
index 680dfed5ec..2265e46bb2 100644
--- a/engines/titanic/sound/music_room_handler.cpp
+++ b/engines/titanic/sound/music_room_handler.cpp
@@ -239,14 +239,11 @@ void CMusicRoomHandler::updateAudio() {
// Reaching end of music
_audioBuffer->finalize();
}
-bool flag = false;
+
void CMusicRoomHandler::updateInstruments() {
uint currentTicks = g_system->getMillis();
if (_active && _soundStartTicks) {
- if (!flag) {
- flag = true; warning("STARTING TICKS %d", currentTicks);//***DEBUG***/
- }
for (MusicInstrument instrument = BELLS; instrument <= BASS;
instrument = (MusicInstrument)((int)instrument + 1)) {
MusicRoomInstrument &ins1 = _array1[instrument];