From 3e3366e0314538bc1ea06fd2dec3dc8aa1e311db Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 8 Mar 2001 02:26:35 +0000 Subject: [PATCH] *** empty log message *** --- panda/src/chan/animChannelMatrixXfmTable.cxx | 2 +- panda/src/chan/config_chan.cxx | 2 +- panda/src/chan/config_chan.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/chan/animChannelMatrixXfmTable.cxx b/panda/src/chan/animChannelMatrixXfmTable.cxx index b0531dc006..31329eaa06 100644 --- a/panda/src/chan/animChannelMatrixXfmTable.cxx +++ b/panda/src/chan/animChannelMatrixXfmTable.cxx @@ -312,7 +312,7 @@ fillin(DatagramIterator& scan, BamReader* manager) return; } - if (!read_compressed) { + if (!read_compressed_channels) { chan_cat.info() << "Not reading compressed animation channels.\n"; clear_all_tables(); diff --git a/panda/src/chan/config_chan.cxx b/panda/src/chan/config_chan.cxx index 15dd4d8faf..fe275af3bb 100644 --- a/panda/src/chan/config_chan.cxx +++ b/panda/src/chan/config_chan.cxx @@ -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 // might want to do this would be to speed load time when you don't // 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) { AnimBundle::init_type(); diff --git a/panda/src/chan/config_chan.h b/panda/src/chan/config_chan.h index e36f417010..841e9a1f30 100644 --- a/panda/src/chan/config_chan.h +++ b/panda/src/chan/config_chan.h @@ -14,6 +14,6 @@ NotifyCategoryDecl(chan, EXPCL_PANDA, EXPTP_PANDA); EXPCL_PANDA extern bool compress_channels; EXPCL_PANDA extern int compress_chan_quality; -EXPCL_PANDA extern bool read_compressed; +EXPCL_PANDA extern bool read_compressed_channels; #endif