diff options
author | Paweł Kołodziejski | 2003-09-05 06:22:10 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-09-05 06:22:10 +0000 |
commit | 7bc63a0ce33336684c8b690fea639e79ebbf5d32 (patch) | |
tree | a0cc9100b579dfef69ba31ac7a1b43564a7efc50 /simon | |
parent | fccc9a2abb3adfd5620f0f6ce5033c8c58210ad9 (diff) | |
download | scummvm-rg350-7bc63a0ce33336684c8b690fea639e79ebbf5d32.tar.gz scummvm-rg350-7bc63a0ce33336684c8b690fea639e79ebbf5d32.tar.bz2 scummvm-rg350-7bc63a0ce33336684c8b690fea639e79ebbf5d32.zip |
fixes for uninitialized pan and volume
svn-id: r9998
Diffstat (limited to 'simon')
-rw-r--r-- | simon/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/sound.cpp b/simon/sound.cpp index 98a0cbd05e..4651157458 100644 --- a/simon/sound.cpp +++ b/simon/sound.cpp @@ -245,7 +245,7 @@ int MP3Sound::playSound(uint sound, PlayingSoundHandle *handle, byte flags) uint32 size = _offsets[sound+1] - _offsets[sound]; - return _mixer->playMP3(handle, _file, size); + return _mixer->playMP3(handle, _file, size, 255, 0); } #endif |