[Scummvm-cvs-logs] scummvm master -> 9f00f18e4efd84202146d683abc007508ca0f222

dreammaster dreammaster at scummvm.org
Fri Jul 29 12:11:20 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
9f00f18e4e TSAGE: Explicitly call the mixer stopAll() when shutting down


Commit: 9f00f18e4efd84202146d683abc007508ca0f222
    https://github.com/scummvm/scummvm/commit/9f00f18e4efd84202146d683abc007508ca0f222
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-07-29T03:08:56-07:00

Commit Message:
TSAGE: Explicitly call the mixer stopAll() when shutting down

Changed paths:
    engines/tsage/sound.cpp



diff --git a/engines/tsage/sound.cpp b/engines/tsage/sound.cpp
index 2d51d5d..60b11e3 100644
--- a/engines/tsage/sound.cpp
+++ b/engines/tsage/sound.cpp
@@ -54,6 +54,7 @@ SoundManager::SoundManager() {
 SoundManager::~SoundManager() {
 	if (__sndmgrReady) {
 		Common::StackLock slock(_serverDisabledMutex);
+		_vm->_mixer->stopAll();
 
 		for (Common::List<Sound *>::iterator i = _soundList.begin(); i != _soundList.end(); ) {
 			Sound *s = *i;






More information about the Scummvm-git-logs mailing list