mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
applied a modified version of heritage & quit message by Sander van Dijk
git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@381 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
0815188f3b
commit
c61463f1ff
2 changed files with 8 additions and 5 deletions
|
@ -61,11 +61,14 @@ int main(int argc, char *argv[])
|
|||
if (!parms.membase)
|
||||
Sys_Error ("Not enough memory free; check disk space\n");
|
||||
|
||||
Con_Printf("FitzQuake %1.2f (c) John Fitzgibbons\n", FITZQUAKE_VERSION);
|
||||
Con_Printf("SDL port (c) SleepwalkR, Baker\n");
|
||||
Con_Printf("QuakeSpasm %1.2f.%d (c) Ozkan Sezer, Stevenaaus\n", FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH);
|
||||
Sys_Printf("Quake %1.2f (c) id Software\n", VERSION);
|
||||
Sys_Printf("GLQuake %1.2f (c) id Software\n", GLQUAKE_VERSION);
|
||||
Sys_Printf("FitzQuake %1.2f (c) John Fitzgibbons\n", FITZQUAKE_VERSION);
|
||||
Sys_Printf("FitzQuake SDL port (c) SleepwalkR, Baker\n");
|
||||
Sys_Printf("QuakeSpasm %1.2f.%d (c) Ozkan Sezer, Steven Atkinson\n",
|
||||
FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH);
|
||||
|
||||
Con_Printf("Host_Init\n");
|
||||
Sys_Printf("Host_Init\n");
|
||||
Host_Init(&parms);
|
||||
|
||||
oldtime = Sys_FloatTime();
|
||||
|
|
|
@ -1579,7 +1579,7 @@ void M_Quit_Key (int key)
|
|||
void M_Quit_Draw (void) //johnfitz -- modified for new quit message
|
||||
{
|
||||
char msg1[40];
|
||||
char msg2[] = "by John Fitzgibbons, OZ & SA."; /* msg2/msg3 are mostly [40] */
|
||||
char msg2[] = "by Ozkan Sezer & Steven Atkinson"; /* msg2/msg3 are mostly [40] */
|
||||
char msg3[] = "Press y to quit";
|
||||
int boxlen;
|
||||
|
||||
|
|
Loading…
Reference in a new issue