mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
fix a case and paste error
This commit is contained in:
parent
89fbacdc78
commit
30f6d2f85c
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ Sys_Error (const char *error, ...)
|
||||||
va_end (argptr);
|
va_end (argptr);
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
MessageBox (NULL, text, "Error", 0 /* MB_OK */ );
|
MessageBox (NULL, string, "Error", 0 /* MB_OK */ );
|
||||||
#endif
|
#endif
|
||||||
fprintf (stderr, "Fatal error: %s\n", string);
|
fprintf (stderr, "Fatal error: %s\n", string);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue