diff options
author | chai <chaifix@163.com> | 2018-10-31 20:44:20 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-10-31 20:44:20 +0800 |
commit | c734eb129d24a5ed6dcad8fa8fd1bdb3352f1257 (patch) | |
tree | c058b0b12acfdc26b612465534b30b059f0231d4 /src/lua/modules/graphics | |
parent | a6868deda1af419822d1610c0ca8b81413519393 (diff) |
*更新渲染模块
Diffstat (limited to 'src/lua/modules/graphics')
-rw-r--r-- | src/lua/modules/graphics/je_lua_graphics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/modules/graphics/je_lua_graphics.cpp b/src/lua/modules/graphics/je_lua_graphics.cpp index a2157b6..6324e00 100644 --- a/src/lua/modules/graphics/je_lua_graphics.cpp +++ b/src/lua/modules/graphics/je_lua_graphics.cpp @@ -196,7 +196,7 @@ namespace JinEngine AssetDatabase* fs = AssetDatabase::get(); if (!fs->exists(path)) { - error(L, "No such shader file \"%s\"\n", path); + error(L, "No such shader file \"%s\"", path); luax_pushnil(L); return 1; } @@ -623,7 +623,7 @@ namespace JinEngine AssetDatabase* fs = AssetDatabase::get(); if (!fs->exists(path)) { - error(L, "No such font %s\n", path); + error(L, "No such font \"%s\"", path); luax_pushnil(L); return 1; } |