From 5047c118f1b3bb60136bc4088e9db53f38dbb087 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 11 Mar 2014 21:35:18 -0400 Subject: MADS: Fix for executing queued sound commands --- engines/mads/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/mads/sound.cpp b/engines/mads/sound.cpp index ea0239076b..eaac70c670 100644 --- a/engines/mads/sound.cpp +++ b/engines/mads/sound.cpp @@ -85,7 +85,7 @@ void SoundManager::startQueuedCommands() { _newSoundsPaused = false; while (!_queuedCommands.empty()) { - int commandId = _queuedCommands.front(); + int commandId = _queuedCommands.pop(); command(commandId); } } -- cgit v1.2.3