mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
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:
parent
414c89ad55
commit
5879f113e0
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue