]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys_linux.c
Disable unsupported compiler optimization if CC=clang
[xonotic/darkplaces.git] / sys_linux.c
index 039466d7b9322f80c22658fca4c0f2dd483c94d6..4f864ec11d18864999790ca82dce8ef8b3a56dfb 100644 (file)
@@ -39,11 +39,7 @@ void Sys_Error (const char *error, ...)
        dpvsnprintf (string, sizeof (string), error, argptr);
        va_end (argptr);
 
-       Con_Printf ("Quake Error: %s\n", string);
-
-#ifdef WIN32
-       MessageBox(NULL, string, "Quake Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
-#endif
+       Con_Errorf ("Engine Error: %s\n", string);
 
        Host_Shutdown ();
        exit (1);