aboutsummaryrefslogtreecommitdiff
path: root/src/lua/modules/graphics/je_lua_canvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/modules/graphics/je_lua_canvas.cpp')
-rw-r--r--src/lua/modules/graphics/je_lua_canvas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/modules/graphics/je_lua_canvas.cpp b/src/lua/modules/graphics/je_lua_canvas.cpp
index 3c1e606..5cbcf98 100644
--- a/src/lua/modules/graphics/je_lua_canvas.cpp
+++ b/src/lua/modules/graphics/je_lua_canvas.cpp
@@ -52,14 +52,14 @@ namespace JinEngine
LUA_EXPORT void luaopen_Canvas(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_Canvas, f);
+ luax_newtype(L, Jin_Lua_Canvas, methods);
}
} // namespace Lua