From c6a10c1d7a45b8aa905cdd13f0e3fd3b4a24b728 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 6 Sep 2005 04:39:36 +0000 Subject: [PATCH] no need for :: or &expr; in param names --- 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 f48e62abd7..6b28df5dea 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -130,7 +130,7 @@ Actor* ActorUtil::LoadFromActorFile( const CString& sDir, const XNode* pNode ) RageException::Throw( ssprintf("Param node in '%s' is missing the attribute 'Name'", sDir.c_str()) ); } - THEME->EvaluateString( sName ); + LuaHelpers::RunAtExpressionS( sName ); CString s; if( pChild->GetAttrValue( "Function", s ) )