sys_sdl.c (Sys_Error): made text3, text4 and text5 into const char arrays.

git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@155 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-04-26 16:55:14 +00:00
parent 414c89ad55
commit 5879f113e0
1 changed files with 3 additions and 3 deletions

View File

@ -161,9 +161,9 @@ void Sys_Error (const char *error, ...)
{
va_list argptr;
char text[1024], text2[1024];
char *text3 = "Press Enter to exit\n";
char *text4 = "***********************************\n";
char *text5 = "\n";
const char text3[] = "Press Enter to exit\n";
const char text4[] = "***********************************\n";
const char text5[] = "\n";
double starttime;
static int in_sys_error1 = 0;
static int in_sys_error2 = 0;