aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoost Peters2009-07-25 12:41:46 +0000
committerJoost Peters2009-07-25 12:41:46 +0000
commit6d1a386471711df4c9ed48be3646a16f81ae0d46 (patch)
tree4e8bf705eed35b48afbaa4299e594595d0752952
parent24ca40eea5249c279d4d89a07702802740515b19 (diff)
downloadscummvm-rg350-6d1a386471711df4c9ed48be3646a16f81ae0d46.tar.gz
scummvm-rg350-6d1a386471711df4c9ed48be3646a16f81ae0d46.tar.bz2
scummvm-rg350-6d1a386471711df4c9ed48be3646a16f81ae0d46.zip
remove implicit SoundDigital::Sound ctor call, which is redundant because the required initialisation is done below -- this fixes a linker error with mipspro
svn-id: r42748
-rw-r--r--engines/kyra/sound_digital.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sound_digital.cpp b/engines/kyra/sound_digital.cpp
index 6b81b1c022..1d8bc5b03c 100644
--- a/engines/kyra/sound_digital.cpp
+++ b/engines/kyra/sound_digital.cpp
@@ -346,7 +346,7 @@ int AUDStream::readChunk(int16 *buffer, const int maxSamples) {
#pragma mark -
-SoundDigital::SoundDigital(KyraEngine_MR *vm, Audio::Mixer *mixer) : _vm(vm), _mixer(mixer), _sounds() {
+SoundDigital::SoundDigital(KyraEngine_MR *vm, Audio::Mixer *mixer) : _vm(vm), _mixer(mixer) {
for (uint i = 0; i < ARRAYSIZE(_sounds); ++i)
_sounds[i].stream = 0;
}