Skip to content

Commit

Permalink
修复编译问题
Browse files Browse the repository at this point in the history
  • Loading branch information
9chu committed Oct 2, 2022
1 parent 5bcc575 commit 19bfd60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Subsystem/DebugGUI/ConsoleWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ namespace
else
{
lua_pushvalue(L, -2);
if (LUA_OK != lua_pcall(L, 1, 1, 0))
if (0 != lua_pcall(L, 1, 1, 0))
lua_pop(L, 1); // errmsg
else
lua_remove(L, -2);
Expand Down

0 comments on commit 19bfd60

Please sign in to comment.