aboutsummaryrefslogtreecommitdiff
path: root/scumm/bundle.h
diff options
context:
space:
mode:
authorJames Brown2003-01-18 15:54:38 +0000
committerJames Brown2003-01-18 15:54:38 +0000
commit97ff115e7d8d53e1ef3a8cc5c0fb60693a13d11e (patch)
treedbb75939feb4f60895055679363d52bcc9640679 /scumm/bundle.h
parent92a53a5bdf9aa1b67b6c844fa68ea783dd7ec96c (diff)
downloadscummvm-rg350-97ff115e7d8d53e1ef3a8cc5c0fb60693a13d11e.tar.gz
scummvm-rg350-97ff115e7d8d53e1ef3a8cc5c0fb60693a13d11e.tar.bz2
scummvm-rg350-97ff115e7d8d53e1ef3a8cc5c0fb60693a13d11e.zip
Fix shadowed variable in debugger, change bundle compression tables to be dynamic
svn-id: r6499
Diffstat (limited to 'scumm/bundle.h')
-rw-r--r--scumm/bundle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/bundle.h b/scumm/bundle.h
index ac9881102c..c4c9c68a41 100644
--- a/scumm/bundle.h
+++ b/scumm/bundle.h
@@ -42,8 +42,8 @@ struct BundleAudioTable {
int32 compDecode(byte *src, byte *dst);
int32 decompressCodec(int32 codec, byte *comp_input, byte *comp_output, int32 size, int32 index, int32 & channels);
- CompTable _compVoiceTable[50];
- CompTable _compMusicTable[3361];
+ CompTable *_compVoiceTable;
+ CompTable *_compMusicTable;
File _voiceFile;
BundleAudioTable *_bundleVoiceTable;
BundleAudioTable *_bundleMusicTable;