From fc4809e41bc5694231046eb2fd4c324c4daba13f Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 18 Sep 2010 13:25:37 +0000 Subject: cosmetic updates in engine list functions, trade menu updates --- src/core/info.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/info.cc') diff --git a/src/core/info.cc b/src/core/info.cc index 1a4f68f..c331d91 100644 --- a/src/core/info.cc +++ b/src/core/info.cc @@ -365,8 +365,8 @@ void Info::list(const Info *info) { con_print << " " << "^B" << std::setw(4) << info->id() << " " - << "^B" << (info->type() ? aux::pad_right(info->type()->label(), 8) : "NULL ") << " " - << "^B" << aux::pad_right(info->label(), 12) << " " + << "^N" << (info->type() ? aux::pad_right(info->type()->label(), 8) : "NULL ") << " " + << "^N" << aux::pad_right(info->label(), 12) << " " << "^N" << info->name() << std::endl; } @@ -377,7 +377,7 @@ void Info::list() Info *info = (*it); list(info); } - con_print << info_registry.size() << " info " << aux::plural("record", info_registry.size()) << std::endl; + con_print << "^B " << info_registry.size() << " info " << aux::plural("record", info_registry.size()) << std::endl; } void Info::list(const InfoType *type) @@ -391,7 +391,7 @@ void Info::list(const InfoType *type) list(info); } } - con_print << count << " " << type->label() << " info " << aux::plural("record", count) << std::endl; + con_print << "^B " << count << " " << type->label() << " info " << aux::plural("record", count) << std::endl; } } -- cgit v1.2.3