Merge pull request #41609 from neikeq/editor-debugger-plugin-uninitialized
Fix crash because of initialized EditorDebuggerPlugin field
This commit is contained in:
commit
cdf845d3ca
@ -39,7 +39,7 @@ class EditorDebuggerPlugin : public Control {
|
|||||||
GDCLASS(EditorDebuggerPlugin, Control);
|
GDCLASS(EditorDebuggerPlugin, Control);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ScriptEditorDebugger *debugger;
|
ScriptEditorDebugger *debugger = nullptr;
|
||||||
|
|
||||||
void _breaked(bool p_really_did, bool p_can_debug);
|
void _breaked(bool p_really_did, bool p_can_debug);
|
||||||
void _started();
|
void _started();
|
||||||
|
Loading…
Reference in New Issue
Block a user