remove unused params

This commit is contained in:
Glenn Maynard
2006-08-15 19:19:59 +00:00
parent 29eb1f6ccb
commit 832679370b
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -433,7 +433,7 @@ void ActorUtil::LoadCommandFromName( Actor& actor, const RString &sType, const R
actor.AddCommand( sCommandName, THEME->GetMetricA(sType,sName+sCommandName+"Command") );
}
void ActorUtil::LoadAndPlayCommand( Actor& actor, const RString &sType, const RString &sCommandName, Actor* pParent )
void ActorUtil::LoadAndPlayCommand( Actor& actor, const RString &sType, const RString &sCommandName )
{
// HACK: It's very often that we command things to TweenOffScreen
// that we aren't drawing. We know that an Actor is not being
@@ -461,7 +461,7 @@ void ActorUtil::LoadAndPlayCommand( Actor& actor, const RString &sType, const RS
LoadCommand( actor, sType, sCommandName );
}
actor.PlayCommand( sCommandName, pParent );
actor.PlayCommand( sCommandName );
}
void ActorUtil::LoadAllCommands( Actor& actor, const RString &sType )