A few QuakeSpasm name fixes

git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@112 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
stevenaaus 2010-04-22 00:25:31 +00:00
parent cdf45c7e21
commit 1dc58562cb
4 changed files with 7 additions and 7 deletions

View file

@ -307,7 +307,7 @@ int VID_SetMode (int modenum)
}
//kristian -- set window caption
sprintf(caption, "FitzQuake (SDL port) Version %1.2f", FITZQUAKE_VERSION);
sprintf(caption, "QuakeSpasm %1.2f.%d", (float)FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH);
SDL_WM_SetCaption((const char* )&caption, (const char*)&caption);
vid.width = modelist[modenum].width;

View file

@ -1267,7 +1267,7 @@ void Host_Name_f (void)
void Host_Version_f (void)
{
Con_Printf ("Quake Version %1.2f\n", VERSION); //johnfitz
Con_Printf ("FitzQuake (SDL port) Version %1.2f\n", FITZQUAKE_VERSION); //johnfitz
Con_Printf ("QuakeSpasm Version %1.2f.%d\n", FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH); //johnfitz
Con_Printf ("Exe: "__TIME__" "__DATE__"\n");
}

View file

@ -58,9 +58,9 @@ int main(int argc, char *argv[])
if (!parms.membase)
Sys_Error ("Not enough memory free; check disk space\n");
Con_Printf("\nFitzQuake Version %1.2f (c) John Fitzgibbons\n", FITZQUAKE_VERSION);
Con_Printf("SDL port (c) Sleepwalkr, Baker, and OZ\n");
Con_Printf("This version hacked by Stevenaaus and OZ\n");
Con_Printf("\nFitzQuake %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);
Con_Printf("Host_Init\n");
Host_Init(&parms);

View file

@ -1619,8 +1619,8 @@ void M_Quit_Draw (void) //johnfitz -- modified for new quit message
m_state = m_quit;
}
sprintf(msg1, "FitzQuake version %1.2f", (float)FITZQUAKE_VERSION);
sprintf(msg2, "by John Fitzgibbons");
sprintf(msg1, "QuakeSpasm %1.2f.%d", (float)FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH);
sprintf(msg2, "by Fitzgibbons, Oz");
sprintf(msg3, "Press y to quit");
//okay, this is kind of fucked up. M_DrawTextBox will always act as if