mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
engine: common: host: use DEFAULT_ALLOWCONSOLE macro to set default console state
This commit is contained in:
parent
555fd02407
commit
a0edfd28b2
@ -894,12 +894,11 @@ void Host_InitCommon( int argc, char **argv, const char *progname, qboolean bCha
|
||||
|
||||
host.mempool = Mem_AllocPool( "Zone Engine" );
|
||||
|
||||
host.allow_console = DEFAULT_ALLOWCONSOLE;
|
||||
|
||||
// HACKHACK: Quake console is always allowed
|
||||
// HACKHACK: console is also always allowed on the Switch since we can't really pass command line
|
||||
// TODO: determine if we are running QWrap more reliable
|
||||
#if !XASH_NSWITCH
|
||||
if( Sys_CheckParm( "-console" ) || !Q_stricmp( SI.exeName, "quake" ) )
|
||||
#endif
|
||||
if( !host.allow_console && ( Sys_CheckParm( "-console" ) || !Q_stricmp( SI.exeName, "quake" )))
|
||||
host.allow_console = true;
|
||||
|
||||
if( Sys_CheckParm( "-dev" ))
|
||||
|
Loading…
x
Reference in New Issue
Block a user