]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys_shared.c
if a (supposedly) quake sky texture is not 128x256, upload it just as a solid layer
[xonotic/darkplaces.git] / sys_shared.c
index dfd9a7a37e72b0bff8dffc79bc5f783638ccbfc8..134b35dcff1f59ae15e12ba1528337c48b01e813 100644 (file)
@@ -93,8 +93,10 @@ void Sys_Printf(const char *fmt, ...)
        Sys_Print(msg);
 }
 
+extern qboolean host_shuttingdown;
 void Sys_Quit (void)
 {
+       host_shuttingdown = true;
        Host_Shutdown();
        exit(0);
 }
@@ -123,6 +125,7 @@ void Sys_Shared_EarlyInit(void)
 #endif
        snprintf (engineversion, sizeof (engineversion), "%s %s %s", gamename, os, buildstring);
 
+// COMMANDLINEOPTION: Console: -nostdout disables text output to the terminal the game was launched from
        if (COM_CheckParm("-nostdout"))
                sys_nostdout = 1;
        else