Skip to content

Commit

Permalink
* Tiny patch to print values of cvars when tab completing ala ET
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Oct 21, 2005
1 parent 64f167f commit f306b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/qcommon/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) );
}
}

Expand Down

0 comments on commit f306b28

Please sign in to comment.