dpvsnprintf (string, sizeof (string), error, argptr);
va_end (argptr);
- Con_Printf ("Quake Error: %s\n", string);
+ Con_Printf ("Engine Error: %s\n", string);
Host_Shutdown ();
exit (1);
dpvsnprintf (string, sizeof (string), error, argptr);
va_end (argptr);
- Con_Printf ("Quake Error: %s\n", string);
+ Con_Printf ("Engine Error: %s\n", string);
#ifdef WIN32
- MessageBox(NULL, string, "Quake Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
+ MessageBox(NULL, string, "Engine Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
#endif
Host_Shutdown ();
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)
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)