diff options
Diffstat (limited to 'src/lua/modules/graphics/je_lua_texture.cpp')
-rw-r--r-- | src/lua/modules/graphics/je_lua_texture.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/modules/graphics/je_lua_texture.cpp b/src/lua/modules/graphics/je_lua_texture.cpp index 712c4ac..5402a99 100644 --- a/src/lua/modules/graphics/je_lua_texture.cpp +++ b/src/lua/modules/graphics/je_lua_texture.cpp @@ -52,14 +52,14 @@ namespace JinEngine LUA_EXPORT void luaopen_Texture(lua_State* L) { - luaL_Reg f[] = { + luaL_Reg methods[] = { { "__gc", l_gc }, { "getWidth", l_getWidth }, { "getHeight", l_getHeight }, { "getSize", l_getSize }, { 0, 0 } }; - luax_newtype(L, Jin_Lua_Texture, f); + luax_newtype(L, Jin_Lua_Texture, methods); } }// namespace Lua |