diff options
| author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-09-05 18:17:46 +0000 | 
|---|---|---|
| committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-09-05 18:17:46 +0000 | 
| commit | d37536edf4660f3c46e4876b6d72e9a200549ffe (patch) | |
| tree | 637eb5f3e49f4075ecdef97a31f5e8157cee73a2 /code/client/cl_console.c | |
| parent | 4496eacc4ec7406fd694693da5a7f9589933f7fd (diff) | |
| download | ioquake3-aero-d37536edf4660f3c46e4876b6d72e9a200549ffe.tar.gz ioquake3-aero-d37536edf4660f3c46e4876b6d72e9a200549ffe.zip  | |
* Merge unified-sdl to trunk
* Bump Q3_VERSION to 1.35
git-svn-id: svn://svn.icculus.org/quake3/trunk@1161 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_console.c')
| -rw-r--r-- | code/client/cl_console.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/code/client/cl_console.c b/code/client/cl_console.c index b8f5f90..9db8c4d 100644 --- a/code/client/cl_console.c +++ b/code/client/cl_console.c @@ -71,9 +71,8 @@ Con_ToggleConsole_f  ================  */  void Con_ToggleConsole_f (void) { -	// closing a full screen console restarts the demo loop +	// Can't toggle the console when it's the only thing available  	if ( cls.state == CA_DISCONNECTED && cls.keyCatchers == KEYCATCH_CONSOLE ) { -		CL_StartDemoLoop();  		return;  	} @@ -619,13 +618,13 @@ void Con_DrawSolidConsole( float frac ) {  	re.SetColor( g_color_table[ColorIndex(COLOR_RED)] ); -	i = strlen( SVN_VERSION ); +	i = strlen( Q3_VERSION );  	for (x=0 ; x<i ; x++) {  		SCR_DrawSmallChar( cls.glconfig.vidWidth - ( i - x ) * SMALLCHAR_WIDTH,  -			(lines-(SMALLCHAR_HEIGHT+SMALLCHAR_HEIGHT/2)), SVN_VERSION[x] ); +			(lines-(SMALLCHAR_HEIGHT+SMALLCHAR_HEIGHT/2)), Q3_VERSION[x] );  	}  | 
