remove unused parameter

This commit is contained in:
Glenn Maynard
2006-08-15 19:24:29 +00:00
parent 832679370b
commit cbc69ea550
12 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -66,12 +66,12 @@ bool Transition::EarlyAbortDraw() const
/* Our parent might send us OnCommand. We do that ourself, because
* we sometimes want to know GetLengthSeconds before StartTransitioning.
* Make sure we don't process OnCommand twice. */
void Transition::PlayCommand( const RString &sCommandName, Actor *pParent )
void Transition::PlayCommand( const RString &sCommandName )
{
if( sCommandName == "On" )
return;
ActorFrame::PlayCommand( sCommandName, pParent );
ActorFrame::PlayCommand( sCommandName );
}
void Transition::StartTransitioning( ScreenMessage send_when_done )