From e32b178fd143df3919d136270cfcfb877c9a3dee Mon Sep 17 00:00:00 2001 From: HarrievG Date: Sat, 3 Jul 2021 01:33:46 +0200 Subject: [PATCH] - setting com_debuggerSupported=false in style. --- neo/framework/Common.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neo/framework/Common.cpp b/neo/framework/Common.cpp index 79408923..fbf2fbe2 100644 --- a/neo/framework/Common.cpp +++ b/neo/framework/Common.cpp @@ -116,7 +116,7 @@ volatile int com_ticNumber; // 60 hz tics int com_editors; // currently opened editor(s) bool com_editorActive; // true if an editor has focus -bool com_debuggerSupported = false; // only set to true when the updateDebugger function is set. see GetAdditionalFunction() +bool com_debuggerSupported; // only set to true when the updateDebugger function is set. see GetAdditionalFunction() #ifdef _WIN32 HWND com_hwndMsg = NULL; @@ -251,6 +251,7 @@ idCommonLocal::idCommonLocal( void ) { com_fullyInitialized = false; com_refreshOnPrint = false; com_errorEntered = 0; + com_debuggerSupported = false; strcpy( errorMessage, "" );