From 5035edb7fdff85749ab5640b9a7fda91b9d39012 Mon Sep 17 00:00:00 2001 From: Saracen Date: Fri, 29 Jul 2016 13:50:26 +0100 Subject: [PATCH] Explicitly initialize 'pending_auto_reload' to false. --- tools/editor/plugins/script_editor_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 4032a790d8..be4b002d89 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -2749,6 +2749,7 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) { completion_cache = memnew( EditorScriptCodeCompletionCache ); restoring_layout=false; waiting_update_names=false; + pending_auto_reload=false; auto_reload_running_scripts=false; editor=p_editor;