From f54253d966845d50613054532de2afad5755825c Mon Sep 17 00:00:00 2001 From: dhewg Date: Fri, 30 Dec 2011 02:03:04 +0100 Subject: [PATCH] Don't use a console lock on Windows or OSX builds Sync with Linux. --- framework/BuildDefines.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/framework/BuildDefines.h b/framework/BuildDefines.h index 924c282..78171b6 100644 --- a/framework/BuildDefines.h +++ b/framework/BuildDefines.h @@ -42,15 +42,7 @@ If you have questions concerning this license or the applicable additional terms // if enabled, the console won't toggle upon ~, unless you start the binary with +set com_allowConsole 1 // Ctrl+Alt+~ will always toggle the console no matter what #ifndef ID_CONSOLE_LOCK - #if defined(_WIN32) || defined(MACOS_X) - #ifdef _DEBUG - #define ID_CONSOLE_LOCK 0 - #else - #define ID_CONSOLE_LOCK 1 - #endif - #else - #define ID_CONSOLE_LOCK 0 - #endif + #define ID_CONSOLE_LOCK 0 #endif // useful for network debugging, turns off 'LAN' checks, all IPs are classified 'internet'