Formatiere die Shutdown-Nachrichten neu

This commit is contained in:
Yamagi Burmeister 2010-10-20 06:10:33 +00:00
parent 18bac1177a
commit 18676a1e7d
3 changed files with 5 additions and 1 deletions

View file

@ -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 ();
}

View file

@ -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");
}
/*

View file

@ -280,6 +280,9 @@ Sys_Quit ( void )
Qcommon_Shutdown();
fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) & ~FNDELAY );
printf("------------------------------------\n");
exit( 0 );
}