mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-02-07 08:21:48 +00:00
* Tiny patch to print values of cvars when tab completing ala ET
This commit is contained in:
parent
64f167f183
commit
f306b2895f
1 changed files with 1 additions and 1 deletions
|
@ -3215,7 +3215,7 @@ PrintMatches
|
||||||
*/
|
*/
|
||||||
static void PrintMatches( const char *s ) {
|
static void PrintMatches( const char *s ) {
|
||||||
if ( !Q_stricmpn( s, shortestMatch, strlen( shortestMatch ) ) ) {
|
if ( !Q_stricmpn( s, shortestMatch, strlen( shortestMatch ) ) ) {
|
||||||
Com_Printf( " %s\n", s );
|
Com_Printf( " %s = \"%s\"\n", s, Cvar_VariableString( s ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue