diff options
Diffstat (limited to 'code/qcommon')
-rw-r--r-- | code/qcommon/cvar.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/code/qcommon/cvar.c b/code/qcommon/cvar.c index 1aafb18..abab453 100644 --- a/code/qcommon/cvar.c +++ b/code/qcommon/cvar.c @@ -842,6 +842,11 @@ void Cvar_List_f( void ) { } else { Com_Printf(" "); } + if (var->flags & CVAR_SYSTEMINFO) { + Com_Printf("s"); + } else { + Com_Printf(" "); + } if (var->flags & CVAR_USERINFO) { Com_Printf("U"); } else { @@ -872,6 +877,11 @@ void Cvar_List_f( void ) { } else { Com_Printf(" "); } + if (var->flags & CVAR_USER_CREATED) { + Com_Printf("?"); + } else { + Com_Printf(" "); + } Com_Printf (" %s \"%s\"\n", var->name, var->string); } |