diff --git a/engine/UniQuake/uniquake.c b/engine/UniQuake/uniquake.c index 09e7c1d..ed0d402 100644 --- a/engine/UniQuake/uniquake.c +++ b/engine/UniQuake/uniquake.c @@ -35,6 +35,14 @@ UNIQUAKE_API void UniQuake_Init(quakeparms_t *parms, const unity_syscalls_t *sys if (!parms->userdir) parms->userdir = parms->basedir; // Code elsewhere relies on this + 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 " QUAKESPASM_VER_STRING " (c) Ozkan Sezer, Eric Wasylishen & others\n"); + Sys_Printf("UniQuake (c) Nico de Poel\n"); + + Sys_Printf("Host_Init\n"); Host_Init(); }