From d136d19cefb7ed792be912ccba98fd626f503d63 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Tue, 10 May 2011 08:55:50 -0500 Subject: [PATCH] fix compile; don't add features early in the morning --- src/Sprite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sprite.cpp b/src/Sprite.cpp index e34dde8802..6d0c4df7ae 100644 --- a/src/Sprite.cpp +++ b/src/Sprite.cpp @@ -1130,7 +1130,7 @@ public: static int setstate( T* p, lua_State *L ) { p->SetState( IArg(1) ); return 0; } static int GetState( T* p, lua_State *L ) { lua_pushnumber( L, p->GetState() ); return 1; } static int GetAnimationLengthSeconds( T* p, lua_State *L ) { lua_pushnumber( L, p->GetAnimationLengthSeconds() ); return 1; } - static int SetSecondsIntoAnimation( T* p, lua_State *L ) { p->SetSecondsIntoAnimation(FArg(0)) return 0; } + static int SetSecondsIntoAnimation( T* p, lua_State *L ) { p->SetSecondsIntoAnimation(FArg(0)); return 0; } static int SetTexture( T* p, lua_State *L ) { RageTexture *pTexture = Luna::check(L, 1);