Skip to content

Commit 19bfd60

Browse files
committed
修复编译问题
1 parent 5bcc575 commit 19bfd60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/Subsystem/DebugGUI/ConsoleWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ namespace
291291
else
292292
{
293293
lua_pushvalue(L, -2);
294-
if (LUA_OK != lua_pcall(L, 1, 1, 0))
294+
if (0 != lua_pcall(L, 1, 1, 0))
295295
lua_pop(L, 1); // errmsg
296296
else
297297
lua_remove(L, -2);

0 commit comments

Comments
 (0)