1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-04 19:21:46 +00:00

Fix crash because of initialized EditorDebuggerPlugin field

This commit is contained in:
Ignacio Etcheverry
2020-08-30 01:52:42 +02:00
parent f10c3810bb
commit b89ba85f6f

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();