]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys_win.c
Make Sys_Error message more generic. Quake -> Engine
[xonotic/darkplaces.git] / sys_win.c
index 0259a02a39302d3d91103336bc4afe53eb1bf9b2..c02cdbb6f8251866b5854e86b19aae4a30a8c8d4 100644 (file)
--- a/sys_win.c
+++ b/sys_win.c
@@ -64,7 +64,7 @@ void Sys_Error (const char *error, ...)
        dpvsnprintf (text, sizeof (text), error, argptr);
        va_end (argptr);
 
-       Con_Printf ("Quake Error: %s\n", text);
+       Con_Printf ("Engine Error: %s\n", text);
 
        // close video so the message box is visible, unless we already tried that
        if (!in_sys_error0 && cls.state != ca_dedicated)
@@ -76,7 +76,7 @@ void Sys_Error (const char *error, ...)
        if (!in_sys_error3 && cls.state != ca_dedicated)
        {
                in_sys_error3 = true;
-               MessageBox(NULL, text, "Quake Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
+               MessageBox(NULL, text, "Engine Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
        }
 
        if (!in_sys_error1)