From 2e74d42aad3af041bfc876b86a3ba5b9e869a166 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: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@25 af15c1b1-3010-417e-b628-4374ebc0bcbd --- quakespasm/Quake/main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/quakespasm/Quake/main.c b/quakespasm/Quake/main.c index 89a4a27a..f333e127 100644 --- a/quakespasm/Quake/main.c +++ b/quakespasm/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);