diff options
author | tjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-25 16:25:51 +0000 |
---|---|---|
committer | tjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-25 16:25:51 +0000 |
commit | a9a340054c32478cf49294e33a1877b083085c01 (patch) | |
tree | d72c64975961ea5ab8223d4bc12dbb5486c07a1c /code | |
parent | 142808ab8545e48e0772b71a84b373d05dcd232b (diff) | |
download | ioquake3-aero-a9a340054c32478cf49294e33a1877b083085c01.tar.gz ioquake3-aero-a9a340054c32478cf49294e33a1877b083085c01.zip |
* Print the SVN version string in Com_Init()
git-svn-id: svn://svn.icculus.org/quake3/trunk@869 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r-- | code/qcommon/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/common.c b/code/qcommon/common.c index e861b51..438f049 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -2397,7 +2397,7 @@ Com_Init void Com_Init( char *commandLine ) { char *s; - Com_Printf( "%s %s %s\n", Q3_VERSION, PLATFORM_STRING, __DATE__ ); + Com_Printf( "%s %s %s\n", SVN_VERSION, PLATFORM_STRING, __DATE__ ); if ( setjmp (abortframe) ) { Sys_Error ("Error during initialization"); |