aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-02-28 11:32:43 +0000
committerJonathan Gray2003-02-28 11:32:43 +0000
commit0e5a19e13e51545d9d24a17e94680868607cdb3f (patch)
treed0389fc4a311a279cadc28843f1a226abe2e08c7 /scumm/sound.cpp
parent18acc2e80007dee24a9173852f1e6cabc18ade51 (diff)
downloadscummvm-rg350-0e5a19e13e51545d9d24a17e94680868607cdb3f.tar.gz
scummvm-rg350-0e5a19e13e51545d9d24a17e94680868607cdb3f.tar.bz2
scummvm-rg350-0e5a19e13e51545d9d24a17e94680868607cdb3f.zip
change rate for humongous DIGI sounds to 11025
svn-id: r6644
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 4cd20fe919..ea641c382f 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -225,7 +225,8 @@ void Sound::playSound(int soundID) {
return; // abort
size = READ_BE_UINT32_UNALIGNED(ptr+4);
- rate = 8000; // FIXME - what value here ?!? 8000 is just a guess
+ // FIXME - what value here ?!? 11025 is just a guess based on strings in w32 bin, prev guess 8000
+ rate = 11025;
// Allocate a sound buffer, copy the data into it, and play
sound = (char*)malloc(size);