diff options
author | Strangerke | 2019-09-05 21:20:35 +0200 |
---|---|---|
committer | Strangerke | 2019-09-06 00:32:39 +0200 |
commit | 9ed4c340a230df61bb92891b00dc7bb3a9814d2b (patch) | |
tree | 1018c409663e4b1980aa577452415d737220b3c4 /engines/hdb | |
parent | 5224112ea56a2bacd54dc3aff3c4effc5531d0d8 (diff) | |
download | scummvm-rg350-9ed4c340a230df61bb92891b00dc7bb3a9814d2b.tar.gz scummvm-rg350-9ed4c340a230df61bb92891b00dc7bb3a9814d2b.tar.bz2 scummvm-rg350-9ed4c340a230df61bb92891b00dc7bb3a9814d2b.zip |
HDB: Fix uninitialized variable in sound
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/sound.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp index 1b42cf606d..b8f3793a1d 100644 --- a/engines/hdb/sound.cpp +++ b/engines/hdb/sound.cpp @@ -1409,6 +1409,7 @@ Sound::Sound() { _sfxVolume = 255; _musicVolume = 255; _numSounds = 0; + _voicesOn = 0; } void Sound::test() { |