mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-03-31 07:21:50 +00:00
Formatiere die Shutdown-Nachrichten neu
This commit is contained in:
parent
18bac1177a
commit
18676a1e7d
3 changed files with 5 additions and 1 deletions
|
@ -219,6 +219,7 @@ void Com_Error (int code, char *fmt, ...)
|
|||
*/
|
||||
void Com_Quit (void)
|
||||
{
|
||||
Com_Printf("\n----------- shutting down ----------\n");
|
||||
SV_Shutdown ("Server quit\n", false);
|
||||
Sys_Quit ();
|
||||
}
|
||||
|
|
|
@ -280,7 +280,7 @@ void SV_SpawnServer (char *server, char *spawnpoint, server_state_t serverstate,
|
|||
Cvar_FullSet ("mapname", sv.name, CVAR_SERVERINFO | CVAR_NOSET);
|
||||
Cvar_SetValue("windowed_mouse", 1);
|
||||
|
||||
Com_Printf ("-------------------------------------\n\n");
|
||||
Com_Printf ("------------------------------------\n\n");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -280,6 +280,9 @@ Sys_Quit ( void )
|
|||
|
||||
Qcommon_Shutdown();
|
||||
fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) & ~FNDELAY );
|
||||
|
||||
printf("------------------------------------\n");
|
||||
|
||||
exit( 0 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue