diff options
author | chai <chaifix@163.com> | 2018-11-13 21:33:25 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-11-13 21:33:25 +0800 |
commit | d2058dce75ceb67f27c50e9f27d755a4d30c9003 (patch) | |
tree | 7575e4b15b637511705632c276f244159841e375 /src/lua/modules/graphics/je_lua_text.cpp | |
parent | 75792c15480d3d99b2ba7e79e143e4b569b22611 (diff) |
*修改渲染模块
Diffstat (limited to 'src/lua/modules/graphics/je_lua_text.cpp')
-rw-r--r-- | src/lua/modules/graphics/je_lua_text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/modules/graphics/je_lua_text.cpp b/src/lua/modules/graphics/je_lua_text.cpp index 4d6db5f..3316a4c 100644 --- a/src/lua/modules/graphics/je_lua_text.cpp +++ b/src/lua/modules/graphics/je_lua_text.cpp @@ -20,8 +20,8 @@ namespace JinEngine LUA_EXPORT int luaopen_Text(lua_State* L) { luaL_Reg f[] = { - { "__gc", l_gc }, - { 0, 0 } + { "__gc", l_gc }, + { 0, 0 } }; luax_newtype(L, JIN_GRAPHICS_TEXT, f); return 0; |