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);