Skip to content

Commit

Permalink
fix: fixed pause issue if break on entry not set
Browse files Browse the repository at this point in the history
  • Loading branch information
sssooonnnggg committed Dec 9, 2024
1 parent 8ecab12 commit 11a44a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debugger/src/internal/debug_bridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class DebugBridge final {
lua_State* break_vm_ = nullptr;
std::mutex break_mutex_;
std::function<void()> main_fn_;
bool resume_ = false;
bool resume_ = true;
std::condition_variable resume_cv_;

std::vector<lua_State*> vm_stack_;
Expand Down

0 comments on commit 11a44a0

Please sign in to comment.