Merge pull request #41609 from neikeq/editor-debugger-plugin-uninitialized

Fix crash because of initialized EditorDebuggerPlugin field
This commit is contained in:
Rémi Verschelde 2020-08-30 12:01:03 +02:00 committed by GitHub
commit cdf845d3ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ class EditorDebuggerPlugin : public Control {
GDCLASS(EditorDebuggerPlugin, Control);
private:
ScriptEditorDebugger *debugger;
ScriptEditorDebugger *debugger = nullptr;
void _breaked(bool p_really_did, bool p_can_debug);
void _started();