diff options
author | Strangerke | 2014-12-01 08:22:40 +0100 |
---|---|---|
committer | Paul Gilbert | 2014-12-12 22:54:20 -0500 |
commit | 6e8f29c15b433e517b06c17fc63d082e7c5069d9 (patch) | |
tree | dd9078022a48a997e967957452167065728bd920 | |
parent | 9604da9da3fad69daca3604de618f5c91c293850 (diff) | |
download | scummvm-rg350-6e8f29c15b433e517b06c17fc63d082e7c5069d9.tar.gz scummvm-rg350-6e8f29c15b433e517b06c17fc63d082e7c5069d9.tar.bz2 scummvm-rg350-6e8f29c15b433e517b06c17fc63d082e7c5069d9.zip |
ACCESS: Implement stopSound
-rw-r--r-- | engines/access/sound.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/access/sound.cpp b/engines/access/sound.cpp index 7d1885955a..a24dd1a24b 100644 --- a/engines/access/sound.cpp +++ b/engines/access/sound.cpp @@ -134,8 +134,7 @@ void SoundManager::loadSounds(Common::Array<RoomInfo::SoundIdent> &sounds) { } void SoundManager::stopSound() { - // TODO: REALSTOPSND or BLASTSTOPSND or STOP_SOUNDG - warning("TODO: stopSound"); + _mixer->stopHandle(Audio::SoundHandle()); } void SoundManager::freeSounds() { |