mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-03-21 10:11:01 +00:00
- setting com_debuggerSupported=false in style.
This commit is contained in:
parent
b80de2b89b
commit
e32b178fd1
1 changed files with 2 additions and 1 deletions
|
@ -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, "" );
|
||||
|
||||
|
|
Loading…
Reference in a new issue