From fd1bdb4ac3678bb6e0698a2424754444ce269937 Mon Sep 17 00:00:00 2001 From: sezero Date: Tue, 16 Feb 2010 12:32:26 +0000 Subject: [PATCH] main.c (main): Print version information at startup. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@25 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Quake/main.c b/Quake/main.c index 89a4a27a..f333e127 100644 --- a/Quake/main.c +++ b/Quake/main.c @@ -57,12 +57,14 @@ int main(int argc, char *argv[]) if (!parms.membase) Sys_Error ("Not enough memory free; check disk space\n"); - // Sys_PageIn (parms.membase, parms.memsize); don't think this is needed -- kristian - // TODO: dedicated server setup // S_BlockSound(); do I need this? + 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("Host_Init\n"); Host_Init(&parms);