diff options
author | Max Horn | 2003-12-27 21:33:34 +0000 |
---|---|---|
committer | Max Horn | 2003-12-27 21:33:34 +0000 |
commit | 12aea7c0da2ac9be311efc6b8307881ce67c6ee1 (patch) | |
tree | 333539919fe4bd584f2bd9e8fe669e56f67f75bc | |
parent | 6f6b0885b47a449677c8ea5f71fd16a3e415bfc9 (diff) | |
download | scummvm-rg350-12aea7c0da2ac9be311efc6b8307881ce67c6ee1.tar.gz scummvm-rg350-12aea7c0da2ac9be311efc6b8307881ce67c6ee1.tar.bz2 scummvm-rg350-12aea7c0da2ac9be311efc6b8307881ce67c6ee1.zip |
fixed another potential crash-on-exit
svn-id: r11983
-rw-r--r-- | scumm/sound.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 604875a952..099205f7dd 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -57,6 +57,7 @@ Sound::Sound(ScummEngine *parent) { } Sound::~Sound() { + stopCDTimer(); delete _sfxFile; } |