aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_console.c
diff options
context:
space:
mode:
authortjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-08-22 16:13:51 +0000
committertjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-08-22 16:13:51 +0000
commitbc5a8944d03f0b96ffa1fd88c33c2f84c4d9249c (patch)
tree2a2e105deec11e9036f8eba4b751e15823e8ee94 /code/client/cl_console.c
parent677e741ce6c129f59c7797646aeb18215078e00f (diff)
downloadioquake3-aero-bc5a8944d03f0b96ffa1fd88c33c2f84c4d9249c.tar.gz
ioquake3-aero-bc5a8944d03f0b96ffa1fd88c33c2f84c4d9249c.zip
* Add SVN version to the version string displayed in the client console
if it can be detected git-svn-id: svn://svn.icculus.org/quake3/trunk@858 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_console.c')
-rw-r--r--code/client/cl_console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/client/cl_console.c b/code/client/cl_console.c
index 09e48e7..b8f5f90 100644
--- a/code/client/cl_console.c
+++ b/code/client/cl_console.c
@@ -619,13 +619,13 @@ void Con_DrawSolidConsole( float frac ) {
re.SetColor( g_color_table[ColorIndex(COLOR_RED)] );
- i = strlen( Q3_VERSION );
+ i = strlen( SVN_VERSION );
for (x=0 ; x<i ; x++) {
SCR_DrawSmallChar( cls.glconfig.vidWidth - ( i - x ) * SMALLCHAR_WIDTH,
- (lines-(SMALLCHAR_HEIGHT+SMALLCHAR_HEIGHT/2)), Q3_VERSION[x] );
+ (lines-(SMALLCHAR_HEIGHT+SMALLCHAR_HEIGHT/2)), SVN_VERSION[x] );
}