mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Move CON_Init ahead of Com_Init to avoid Windows dedicated server crash
This commit is contained in:
parent
5f2e4a03c5
commit
fa1549d457
1 changed files with 1 additions and 2 deletions
|
@ -744,11 +744,10 @@ int main( int argc, char **argv )
|
|||
Q_strcat( commandLine, sizeof( commandLine ), " " );
|
||||
}
|
||||
|
||||
CON_Init( );
|
||||
Com_Init( commandLine );
|
||||
NET_Init( );
|
||||
|
||||
CON_Init( );
|
||||
|
||||
signal( SIGILL, Sys_SigHandler );
|
||||
signal( SIGFPE, Sys_SigHandler );
|
||||
signal( SIGSEGV, Sys_SigHandler );
|
||||
|
|
Loading…
Reference in a new issue