From 5c998c0f96bc2260efa3d61c77e64b817b981445 Mon Sep 17 00:00:00 2001 From: freem Date: Fri, 21 Feb 2014 16:41:30 -0600 Subject: [PATCH] pedantic "change 4 spaces to tab" commit --- src/Actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Actor.cpp b/src/Actor.cpp index 96593ba861..344399101e 100644 --- a/src/Actor.cpp +++ b/src/Actor.cpp @@ -1593,7 +1593,7 @@ public: static int pause( T* p, lua_State * ) { p->EnableAnimation(false); return 0; } static int setstate( T* p, lua_State *L ) { p->SetState(IArg(1)); return 0; } static int GetNumStates( T* p, lua_State *L ) { LuaHelpers::Push( L, p->GetNumStates() ); return 1; } - static int texturetranslate( T* p, lua_State *L ) { p->SetTextureTranslate(FArg(1),FArg(2)); return 0; } + static int texturetranslate( T* p, lua_State *L ) { p->SetTextureTranslate(FArg(1),FArg(2)); return 0; } static int texturewrapping( T* p, lua_State *L ) { p->SetTextureWrapping(BIArg(1)); return 0; } static int SetTextureFiltering( T* p, lua_State *L ) { p->SetTextureFiltering(BArg(1)); return 0; } static int blend( T* p, lua_State *L ) { p->SetBlendMode( Enum::Check(L, 1) ); return 0; }