From: <sv...@ww...> - 2005-10-16 22:06:11
|
Author: mkrose Date: 2005-10-16 15:06:04 -0700 (Sun, 16 Oct 2005) New Revision: 1652 Modified: trunk/CSP/CSPSim/Source/Animation.cpp Log: Remove an overzealous assert for missing animation channels. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1652 Modified: trunk/CSP/CSPSim/Source/Animation.cpp =================================================================== --- trunk/CSP/CSPSim/Source/Animation.cpp 2005-10-16 22:00:45 UTC (rev 1651) +++ trunk/CSP/CSPSim/Source/Animation.cpp 2005-10-16 22:06:04 UTC (rev 1652) @@ -95,7 +95,6 @@ * changed since the last call to update. */ bool update() { - assert(m_Channel.valid()); if (!m_Channel) return false; const float value = static_cast<float>(m_Channel->value()); const bool changed = (value != m_Value); |