diff options
-rw-r--r-- | engines/mads/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |