diff options
author | Stijn Buys <ingar@osirion.org> | 2009-04-16 19:36:15 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2009-04-16 19:36:15 +0000 |
commit | 6ab4021827e91303ac6fe2276f5567810b7e0496 (patch) | |
tree | 82c50c5a4bdc63da51c5bee9c122d165fd872aa6 /src/core | |
parent | a95028547981614e06ea7a6d22b853b85418cea3 (diff) |
updated a few help messages, added 3d modelview to the buy menu
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/commandbuffer.cc | 2 | ||||
-rw-r--r-- | src/core/info.cc | 4 | ||||
-rw-r--r-- | src/core/loader.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/core/commandbuffer.cc b/src/core/commandbuffer.cc index 84b63be..e288b0f 100644 --- a/src/core/commandbuffer.cc +++ b/src/core/commandbuffer.cc @@ -189,7 +189,7 @@ void CommandBuffer::init() func->set_info("list functions"); func = Func::add("list_info", (FuncPtr)func_list_info); - func->set_info("list infos"); + func->set_info("list info records"); func = Func::add("list_var", (FuncPtr)func_list_var); func->set_info("list variables"); diff --git a/src/core/info.cc b/src/core/info.cc index fc10fe5..5f31569 100644 --- a/src/core/info.cc +++ b/src/core/info.cc @@ -122,7 +122,7 @@ Info::~Info() void Info::print() const { - con_print << "label: ^B" << label() << " ^Nname: ^B" << name() << "^N" << std::endl; + con_print << "label: ^B" << label() << " ^Nname: ^B" << name() << " ^Nmodel: ^B" << modelname() << "^N" << std::endl; for (Text::const_iterator it = info_text.begin(); it != info_text.end(); it++) { con_print << " " << (*it) << std::endl; @@ -176,7 +176,7 @@ void Info::list() Info *info = (*it).second;; con_print << info->label() << std::endl; } - con_print << registry.size() << " registered infos" << std::endl; + con_print << registry.size() << " registered info " << aux::plural("record", registry.size()) << std::endl; } } diff --git a/src/core/loader.cc b/src/core/loader.cc index 46e0990..4070c2b 100644 --- a/src/core/loader.cc +++ b/src/core/loader.cc @@ -84,7 +84,7 @@ void Loader::list() } con_print << loaderlist << std::endl; - con_print << loader_registry.size() << " registered " << aux::plural("modules", loader_registry.size()) << std::endl; + con_print << loader_registry.size() << " registered " << aux::plural("module", loader_registry.size()) << std::endl; } |