Skip to content

Commit 88b89bb

Browse files
committed
fix: improper stack pop causing error in updates
1 parent 728851f commit 88b89bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ void ui_main_c::PCall(int narg, int nret)
166166
lua_pop(L, 1);
167167
}
168168
}
169-
lua_pop(L, 1);
169+
lua_pop(L, 2);
170170
inLua = false;
171171
sys->SetWorkDir();
172172
if (err && !didExit) {

0 commit comments

Comments
 (0)