mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
console.c (Con_DrawConsole): Change engine/version string to QuakeSpasm,
use the QUAKESPASM_VER_PATCH to append to the FITZQUAKE_VERSION. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@30 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
11d54103d7
commit
9d73b4b246
1 changed files with 1 additions and 1 deletions
|
@ -1082,7 +1082,7 @@ void Con_DrawConsole (int lines, qboolean drawinput)
|
|||
|
||||
//draw version number in bottom right
|
||||
y+=8;
|
||||
sprintf (ver, "FitzQuake %1.2f SDL", (float)FITZQUAKE_VERSION);
|
||||
sprintf (ver, "QuakeSpasm %1.2f.%d", (float)FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH);
|
||||
for (x=0; x<strlen(ver); x++)
|
||||
Draw_Character ((con_linewidth-strlen(ver)+x+2)<<3, y, ver[x] /*+ 128*/);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue