diff --git a/Quake/gl_vidsdl.c b/Quake/gl_vidsdl.c index cc7223d8..752fcf48 100644 --- a/Quake/gl_vidsdl.c +++ b/Quake/gl_vidsdl.c @@ -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; diff --git a/Quake/host_cmd.c b/Quake/host_cmd.c index f1c17894..5e577f2f 100644 --- a/Quake/host_cmd.c +++ b/Quake/host_cmd.c @@ -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"); } diff --git a/Quake/main.c b/Quake/main.c index fa5603a5..123bafb2 100644 --- a/Quake/main.c +++ b/Quake/main.c @@ -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); diff --git a/Quake/menu.c b/Quake/menu.c index 0e8f0281..f5948b61 100644 --- a/Quake/menu.c +++ b/Quake/menu.c @@ -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