Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/info.cc')
-rw-r--r--src/core/info.cc8
1 files changed, 4 insertions, 4 deletions
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;
}
}