aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/sound.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-08-14 21:11:12 +0300
committerEugene Sandulenko2013-09-06 14:51:14 +0300
commit4db2d7e21b6729b04e1760af302a1acdd3bd4ae4 (patch)
tree93fdac341329bc01bf20bc264142272e1323ac17 /engines/fullpipe/sound.cpp
parentfce8c0f5952533b592de21205274f5cf9347a3b1 (diff)
downloadscummvm-rg350-4db2d7e21b6729b04e1760af302a1acdd3bd4ae4.tar.gz
scummvm-rg350-4db2d7e21b6729b04e1760af302a1acdd3bd4ae4.tar.bz2
scummvm-rg350-4db2d7e21b6729b04e1760af302a1acdd3bd4ae4.zip
FULLPIPE: Fix crash
Diffstat (limited to 'engines/fullpipe/sound.cpp')
-rw-r--r--engines/fullpipe/sound.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/fullpipe/sound.cpp b/engines/fullpipe/sound.cpp
index d69ce35777..7a6696edd6 100644
--- a/engines/fullpipe/sound.cpp
+++ b/engines/fullpipe/sound.cpp
@@ -73,7 +73,8 @@ Sound::Sound() {
_directSoundBuffer = 0;
_soundData = 0;
_objectId = 0;
- memset(_directSoundBuffers, 0, sizeof(_directSoundBuffers));
+ memset(_directSoundBuffers, 0, sizeof(_directSoundBuffers));
+ _description = 0;
}