mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-23 04:12:39 +00:00
cvarlist: also display systeminfo and user created flags
This commit is contained in:
parent
abda6d984a
commit
68fa0b55a9
1 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue