diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-08-03 17:12:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 17:12:37 +0200 |
commit | 80fc90e82a57e8111cb7577b05bb2de021000e75 (patch) | |
tree | defa5d920819e120f6012eb91865bee770018e0f /editor/plugins | |
parent | db9c9932508026a570b7beb4d5ddfb35aa5f1c42 (diff) | |
parent | 7bccd5487e83d66351c8b8cd17ab1b6ce719df09 (diff) |
Merge pull request #50454 from Ev1lbl0w/gsoc21-dap
Implemented initial DAP support
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/editor_debugger_plugin.cpp | 2 | ||||
-rw-r--r-- | editor/plugins/editor_debugger_plugin.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/editor_debugger_plugin.cpp b/editor/plugins/editor_debugger_plugin.cpp index 89073b7189..5f3b11ac42 100644 --- a/editor/plugins/editor_debugger_plugin.cpp +++ b/editor/plugins/editor_debugger_plugin.cpp @@ -32,7 +32,7 @@ #include "editor/debugger/script_editor_debugger.h" -void EditorDebuggerPlugin::_breaked(bool p_really_did, bool p_can_debug) { +void EditorDebuggerPlugin::_breaked(bool p_really_did, bool p_can_debug, String p_message, bool p_has_stackdump) { if (p_really_did) { emit_signal(SNAME("breaked"), p_can_debug); } else { diff --git a/editor/plugins/editor_debugger_plugin.h b/editor/plugins/editor_debugger_plugin.h index b33a8ed925..5995d790c5 100644 --- a/editor/plugins/editor_debugger_plugin.h +++ b/editor/plugins/editor_debugger_plugin.h @@ -41,7 +41,7 @@ class EditorDebuggerPlugin : public Control { private: ScriptEditorDebugger *debugger = nullptr; - void _breaked(bool p_really_did, bool p_can_debug); + void _breaked(bool p_really_did, bool p_can_debug, String p_message, bool p_has_stackdump); void _started(); void _stopped(); |