From c05d04d1973807bd3995d929d8ea10a4ed1fd4d7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 21 Jan 2004 01:32:56 +0000 Subject: [PATCH] fix warning --- 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 5fac965516..e8488f8b5c 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -823,7 +823,7 @@ void Actor::HandleCommand( const ParsedCommand &command ) else if( sName=="customtexturerect" || sName=="texcoordvelocity" || sName=="scaletoclipped" || sName=="stretchtexcoords" || sName=="position" || sName=="loop" || sName=="play" || sName=="pause" || sName=="rate" ) - ; /* sprite commands */ + return; /* sprite commands; don't run CheckHandledParams */ else { CString sError = ssprintf( "Actor::HandleCommand: Unrecognized command name '%s'.", sName.c_str() );