diff options
| author | Travis Howell | 2009-04-29 05:47:10 +0000 | 
|---|---|---|
| committer | Travis Howell | 2009-04-29 05:47:10 +0000 | 
| commit | 804cd38c8310d9a7e8f4dd610b2c68157e672c18 (patch) | |
| tree | d284374e191761794c7d63ccfbf9ea40d1880c8a | |
| parent | 6b962cda4e97158a7eeeafd399e042feeb7f7053 (diff) | |
| download | scummvm-rg350-804cd38c8310d9a7e8f4dd610b2c68157e672c18.tar.gz scummvm-rg350-804cd38c8310d9a7e8f4dd610b2c68157e672c18.tar.bz2 scummvm-rg350-804cd38c8310d9a7e8f4dd610b2c68157e672c18.zip  | |
Enable music and sound effects in BRA, by default.
svn-id: r40193
| -rw-r--r-- | engines/parallaction/sound_br.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/parallaction/sound_br.cpp b/engines/parallaction/sound_br.cpp index df089ceb16..d7f144fdeb 100644 --- a/engines/parallaction/sound_br.cpp +++ b/engines/parallaction/sound_br.cpp @@ -568,6 +568,9 @@ SoundMan_br::SoundMan_br(Parallaction_br *vm) : _vm(vm) {  	_channels[2].dispose = false;  	_channels[3].data = 0;  	_channels[3].dispose = false; + +	_musicEnabled = true; +	_sfxEnabled = true;  }  SoundMan_br::~SoundMan_br() {  | 
