more bzip size savings (made it so our bzip2 can only decompress one thing at a time, though, which is fine cause thats what we use anyway)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1207 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
justin1014 2002-09-27 05:00:46 +00:00
parent a50df55cef
commit 4811f17832
2 changed files with 22 additions and 21 deletions

View file

@ -351,11 +351,11 @@ typedef
#ifndef NSIS_COMPRESS_BZIP2_SMALLMODE
/* for undoing the Burrows-Wheeler transform (FAST) */
UInt32 *tt;
UInt32 tt[ NSIS_COMPRESS_BZIP2_LEVEL * 100000 ];
#else
/* for undoing the Burrows-Wheeler transform (SMALL) */
UInt16 *ll16;
UChar *ll4;
UInt16 ll16 [ NSIS_COMPRESS_BZIP2_LEVEL*100000 ];
UChar ll4 [((1 + NSIS_COMPRESS_BZIP2_LEVEL*100000) >> 1) ];
#endif
/* stored and calculated CRCs */