diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-09-04 01:31:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 01:31:08 +0200 |
commit | 75cbcb596a2ffc2a289fe1319292d1eb9a788732 (patch) | |
tree | d3a1ac88a273a0b1322b40d61e0e3485aa13ea7d /core/script_debugger_local.cpp | |
parent | 5d162798cd172404a5a7101a9c5666046ef62e88 (diff) | |
parent | 617797c47cac39830282b7ea85fc38eb2d242e19 (diff) |
Merge pull request #30982 from iwek7/feature/skip_breakpoints
Adds skip-breakpoints feature
Diffstat (limited to 'core/script_debugger_local.cpp')
-rw-r--r-- | core/script_debugger_local.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_debugger_local.cpp b/core/script_debugger_local.cpp index ac4dafcf59..e61f9f7158 100644 --- a/core/script_debugger_local.cpp +++ b/core/script_debugger_local.cpp @@ -33,7 +33,7 @@ #include "core/os/os.h" #include "scene/main/scene_tree.h" -void ScriptDebuggerLocal::debug(ScriptLanguage *p_script, bool p_can_continue) { +void ScriptDebuggerLocal::debug(ScriptLanguage *p_script, bool p_can_continue, bool p_is_error_breakpoint) { if (!target_function.empty()) { String current_function = p_script->debug_get_stack_level_function(0); |