diff --git a/stepmania/src/LuaManager.h b/stepmania/src/LuaManager.h index 716b050f13..bda50aded9 100644 --- a/stepmania/src/LuaManager.h +++ b/stepmania/src/LuaManager.h @@ -93,9 +93,9 @@ namespace LuaHelpers template bool Pop( T &val, lua_State *L ) { - bool bRet = LuaHelpers::FromStack( val, -1, L ); - lua_pop( L, 1 ); - return bRet; + bool bRet = LuaHelpers::FromStack( val, -1, L ); + lua_pop( L, 1 ); + return bRet; } template