aboutsummaryrefslogtreecommitdiff
path: root/sound.cpp
diff options
context:
space:
mode:
authorJames Brown2002-05-06 15:32:32 +0000
committerJames Brown2002-05-06 15:32:32 +0000
commit21e14b44c53b483a098b3b3c0182d2546e9c979c (patch)
treecdaafc867c41e57c5937340547d7d0190eedc3dd /sound.cpp
parent1dc2ccca8dc47422b7637600b22b987b6cac8ec2 (diff)
downloadscummvm-rg350-21e14b44c53b483a098b3b3c0182d2546e9c979c.tar.gz
scummvm-rg350-21e14b44c53b483a098b3b3c0182d2546e9c979c.tar.bz2
scummvm-rg350-21e14b44c53b483a098b3b3c0182d2546e9c979c.zip
Add raw PCM part to dig .bun decompressor.
svn-id: r4219
Diffstat (limited to 'sound.cpp')
-rw-r--r--sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound.cpp b/sound.cpp
index 849a5b1db9..f1e6ee9796 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -722,8 +722,8 @@ void Scumm::decompressBundleSound(int index) {
switch(table[i].codec) {
case 0:
- warning("Unimplemented bundle codec 1");
- outputSize = 0;
+ outputSize = table[i].size;
+ memcpy(&CompOutput[0], &CompInput[0], outputSize);
break;
case 1: