diff options
author | chai <chaifix@163.com> | 2018-12-04 14:10:29 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-12-04 14:10:29 +0800 |
commit | e1bc01ce6948283930f7f29a640a91a27a29c997 (patch) | |
tree | 10620e2107f5e3df96a61516090347b950c58a74 /src/lua/modules/graphics/je_lua_bitmap.cpp | |
parent | f439c73308774d39cc9647ebfeedcf52b2111fed (diff) |
*格式化代码
Diffstat (limited to 'src/lua/modules/graphics/je_lua_bitmap.cpp')
-rw-r--r-- | src/lua/modules/graphics/je_lua_bitmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/modules/graphics/je_lua_bitmap.cpp b/src/lua/modules/graphics/je_lua_bitmap.cpp index 9b71e9b..26908e6 100644 --- a/src/lua/modules/graphics/je_lua_bitmap.cpp +++ b/src/lua/modules/graphics/je_lua_bitmap.cpp @@ -90,7 +90,7 @@ namespace JinEngine SharedBitmap shared = checkBitmap(L); Bitmap* bitmap = shared.getObject(); Bitmap* b = Bitmap::clone(bitmap); - LuaObject* luaObj = luax_newinstance(L, Jin_Lua_Bitmap, new Shared<Bitmap>(L, b, Jin_Lua_Bitmap)); + LuaObject* luaObj = luax_newinstance(L, Jin_Lua_Bitmap, new Shared<Bitmap>(b, Jin_Lua_Bitmap)); return 1; } |