From b72e9d7c8941b089e9030db7bb14c5a21b0cb4c0 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 31 Dec 2003 03:43:45 +0000 Subject: [PATCH] change tween state size assert to debug_assert --- stepmania/src/Actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Actor.cpp b/stepmania/src/Actor.cpp index b89771bd5a..fe88932b3e 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -337,7 +337,7 @@ void Actor::BeginTweening( float time, TweenType tt ) time = max( time, 0 ); - ASSERT( m_TweenStates.size() < 50 ); // there's no reason for the number of tweens to ever go this large + DEBUG_ASSERT( m_TweenStates.size() < 50 ); // there's no reason for the number of tweens to ever go this large // add a new TweenState to the tail, and initialize it m_TweenStates.resize( m_TweenStates.size()+1 );