From 9caf4b7479264dde875350fc3d49e8d21e4f2049 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 2 Apr 2003 20:22:50 +0000 Subject: [PATCH] whoops, silly fix --- 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 7559e1c95e..3d8f35a417 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -646,7 +646,7 @@ void Actor::Command( CString sCommandString ) else if( sName=="z" ) SetZ( fParam(1) ); else if( sName=="xoffset" ) SetX( GetX()+fParam(1) ); else if( sName=="yoffset" ) SetY( GetY()+fParam(1) ); - else if( sName=="zoffset" ) SetY( GetZ()+fParam(1) ); + else if( sName=="zoffset" ) SetZ( GetZ()+fParam(1) ); else if( sName=="zoom" ) SetZoom( fParam(1) ); else if( sName=="zoomx" ) SetZoomX( fParam(1) ); else if( sName=="zoomy" ) SetZoomY( fParam(1) );