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") ) );