aboutsummaryrefslogtreecommitdiff
path: root/scumm/bundle.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-01-14 17:47:33 +0000
committerPaweł Kołodziejski2003-01-14 17:47:33 +0000
commit7bae2062f8f1f66d153ff5beac33678d1b1f977b (patch)
treecdf1b1e406237eed1483a2f3c12525f8fe6c3832 /scumm/bundle.h
parente0d2d9f7a04f7f1281ba70abe33f3bae6f3fc772 (diff)
downloadscummvm-rg350-7bae2062f8f1f66d153ff5beac33678d1b1f977b.tar.gz
scummvm-rg350-7bae2062f8f1f66d153ff5beac33678d1b1f977b.tar.bz2
scummvm-rg350-7bae2062f8f1f66d153ff5beac33678d1b1f977b.zip
increased compression table for comi music, and added assert for it
svn-id: r6456
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 d4d2df7850..26190663c5 100644
--- a/scumm/bundle.h
+++ b/scumm/bundle.h
@@ -43,8 +43,9 @@ 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[2500];
+ CompTable _compMusicTable[3361];
File _voiceFile;
+ File _musicFile;
BundleAudioTable *_bundleVoiceTable;
BundleAudioTable *_bundleMusicTable;
int32 _numVoiceFiles;
@@ -59,7 +60,6 @@ public:
Bundle();
~Bundle();
- File _musicFile;
void initializeImcTables();
bool openVoiceFile(const char *filename, const char *directory);
bool openMusicFile(const char *filename, const char *directory);