console.c (Con_DrawConsole): Added SDL to the version string.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@10 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2010-02-16 08:42:58 +00:00
parent 3a5b43816d
commit 3e255ca4a6
1 changed files with 1 additions and 1 deletions

View File

@ -1082,7 +1082,7 @@ void Con_DrawConsole (int lines, qboolean drawinput)
//draw version number in bottom right //draw version number in bottom right
y+=8; y+=8;
sprintf (ver, "FitzQuake %1.2f"/*" beta2"*/, (float)FITZQUAKE_VERSION); sprintf (ver, "FitzQuake %1.2f SDL", (float)FITZQUAKE_VERSION);
for (x=0; x<strlen(ver); x++) for (x=0; x<strlen(ver); x++)
Draw_Character ((con_linewidth-strlen(ver)+x+2)<<3, y, ver[x] /*+ 128*/); Draw_Character ((con_linewidth-strlen(ver)+x+2)<<3, y, ver[x] /*+ 128*/);
} }