From 293eebe8760b2ccb56b48b8d2b082fa02a945866 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Fri, 18 Feb 2011 14:44:38 -0600 Subject: [PATCH] tiny commit for testing --- src/Actor.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Actor.h b/src/Actor.h index e4244dd824..96792e029e 100644 --- a/src/Actor.h +++ b/src/Actor.h @@ -185,7 +185,7 @@ public: void SetWidth( float width ) { m_size.x = width; } void SetHeight( float height ) { m_size.y = height; } - // Base + // Base values float GetBaseZoomX() const { return m_baseScale.x; } void SetBaseZoomX( float zoom ) { m_baseScale.x = zoom; } float GetBaseZoomY() const { return m_baseScale.y; } @@ -199,7 +199,6 @@ public: void SetBaseRotation( const RageVector3 &rot ) { m_baseRotation = rot; } virtual void SetBaseAlpha( float fAlpha ) { m_fBaseAlpha = fAlpha; } - float GetZoom() const { return DestTweenState().scale.x; } // not accurate in some cases float GetZoomX() const { return DestTweenState().scale.x; } float GetZoomY() const { return DestTweenState().scale.y; }