From 79c93de53ad84539ef9693ee38a60ad87694f82e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 16 Nov 2003 21:45:45 +0000 Subject: [PATCH] slightly better output --- stepmania/src/ActorUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index c001280d8e..b29acf3bf9 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -155,7 +155,7 @@ float UtilCommand( Actor& actor, CString sClassName, CString sCommandName ) if( actor.GetID().empty() ) return ret; } else { - ASSERT( !actor.GetID().empty() ); + RAGE_ASSERT_M( !actor.GetID().empty(), ssprintf("!actor.GetID().empty() ('%s', '%s')", sClassName.c_str(), sCommandName.c_str()) ); } return max( ret, actor.Command( THEME->GetMetric(sClassName,actor.GetID()+sCommandName+"Command") ) );