From f306b2895f1a17883bbdc256982f230a05ded995 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 21 Oct 2005 00:09:34 +0000 Subject: [PATCH] * Tiny patch to print values of cvars when tab completing ala ET --- code/qcommon/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/common.c b/code/qcommon/common.c index f1b52ea1..439accab 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -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 ) ); } }