* Tiny patch to print values of cvars when tab completing ala ET

This commit is contained in:
Tim Angus 2005-10-21 00:09:34 +00:00
parent 64f167f183
commit f306b2895f

View file

@ -3215,7 +3215,7 @@ PrintMatches
*/
static void PrintMatches( const char *s ) {
if ( !Q_stricmpn( s, shortestMatch, strlen( shortestMatch ) ) ) {
Com_Printf( " %s\n", s );
Com_Printf( " %s = \"%s\"\n", s, Cvar_VariableString( s ) );
}
}