*** empty log message ***

This commit is contained in:
David Rose 2001-03-08 02:26:35 +00:00
parent 96ce359ffe
commit 3e3366e031
3 changed files with 3 additions and 3 deletions

View File

@ -312,7 +312,7 @@ fillin(DatagramIterator& scan, BamReader* manager)
return; return;
} }
if (!read_compressed) { if (!read_compressed_channels) {
chan_cat.info() chan_cat.info()
<< "Not reading compressed animation channels.\n"; << "Not reading compressed animation channels.\n";
clear_all_tables(); clear_all_tables();

View File

@ -60,7 +60,7 @@ int compress_chan_quality = config_chan.GetInt("compress-chan-quality", 95);
// even if the decompression code is available. The only reason you // even if the decompression code is available. The only reason you
// might want to do this would be to speed load time when you don't // might want to do this would be to speed load time when you don't
// care about what the animation looks like. // care about what the animation looks like.
bool read_compressed = config_chan.GetBool("read-compressed", true); bool read_compressed_channels = config_chan.GetBool("read-compressed-channels", true);
ConfigureFn(config_chan) { ConfigureFn(config_chan) {
AnimBundle::init_type(); AnimBundle::init_type();

View File

@ -14,6 +14,6 @@ NotifyCategoryDecl(chan, EXPCL_PANDA, EXPTP_PANDA);
EXPCL_PANDA extern bool compress_channels; EXPCL_PANDA extern bool compress_channels;
EXPCL_PANDA extern int compress_chan_quality; EXPCL_PANDA extern int compress_chan_quality;
EXPCL_PANDA extern bool read_compressed; EXPCL_PANDA extern bool read_compressed_channels;
#endif #endif