aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/sound.cpp')
-rw-r--r--engines/hdb/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp
index 057d97ddc6..404e0deebc 100644
--- a/engines/hdb/sound.cpp
+++ b/engines/hdb/sound.cpp
@@ -1409,7 +1409,7 @@ Sound::Sound() {
_sfxVolume = 255;
_musicVolume = 255;
_numSounds = 0;
- _voicesOn = 0;
+ _voicesOn = false;
}
void Sound::test() {
@@ -1449,7 +1449,7 @@ void Sound::init() {
_numSounds = index;
// voices are on by default
- _voicesOn = 1;
+ _voicesOn = true;
memset(&_voicePlayed[0], 0, sizeof(_voicePlayed));
}