Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-09-18 13:25:37 +0000
committerStijn Buys <ingar@osirion.org>2010-09-18 13:25:37 +0000
commitfc4809e41bc5694231046eb2fd4c324c4daba13f (patch)
tree02f183a0779aa0457e13f42037f3631ea28b7b65 /src/core/cvar.cc
parent8c6a1a404ac8d1589a37d54b3b7ce0d776fe4751 (diff)
cosmetic updates in engine list functions, trade menu updates
Diffstat (limited to 'src/core/cvar.cc')
-rw-r--r--src/core/cvar.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/cvar.cc b/src/core/cvar.cc
index f043028..a47b72e 100644
--- a/src/core/cvar.cc
+++ b/src/core/cvar.cc
@@ -167,8 +167,6 @@ Cvar *Cvar::find(const char* name)
void Cvar::list()
{
- con_print << "Flags: A=Archive G=Game R=ReadOnly" << std::endl;
-
Registry::iterator it;
for (it = cvar_registry.begin(); it != cvar_registry.end(); it++) {
std::string typeindicator;
@@ -190,7 +188,8 @@ void Cvar::list()
con_print << " " << typeindicator <<
" " << (*it).first << " " << (*it).second->str() << " ^N" << (*it).second->info() << std::endl;
}
- con_print << cvar_registry.size() << " registered variables" << std::endl;
+ con_print << " Flags: A=Archive G=Game R=ReadOnly" << std::endl;
+ con_print << "^B " << cvar_registry.size() << " registered variables" << std::endl;
}
}