diff options
author | Jonathan Gray | 2003-02-28 11:32:43 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-02-28 11:32:43 +0000 |
commit | 0e5a19e13e51545d9d24a17e94680868607cdb3f (patch) | |
tree | d0389fc4a311a279cadc28843f1a226abe2e08c7 | |
parent | 18acc2e80007dee24a9173852f1e6cabc18ade51 (diff) | |
download | scummvm-rg350-0e5a19e13e51545d9d24a17e94680868607cdb3f.tar.gz scummvm-rg350-0e5a19e13e51545d9d24a17e94680868607cdb3f.tar.bz2 scummvm-rg350-0e5a19e13e51545d9d24a17e94680868607cdb3f.zip |
change rate for humongous DIGI sounds to 11025
svn-id: r6644
-rw-r--r-- | scumm/sound.cpp | 3 |
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); |