From aaf2705f680f19409aced0ce033539b6741fc4f9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 6 Sep 2005 04:38:37 +0000 Subject: [PATCH] no need for :: or &expr; in command names --- 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 4362cbaf04..a4fb88ffcf 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -249,7 +249,7 @@ void Actor::LoadFromNode( const CString& sDir, const XNode* pNode ) CString sValue; c->GetAttrValue( "Value", sValue ); - THEME->EvaluateString( sName ); + LuaHelpers::RunAtExpressionS( sName ); apActorCommands apac( new ActorCommands( sValue ) ); AddCommand( sName, apac );