FunctionProfile::time -> FunctionProfile::total_time

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1542 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2010-12-07 21:14:55 +00:00
parent f9e8bb88e3
commit aba1ea3470
+1 -1
View File
@@ -225,7 +225,7 @@ void CLISetInterface::handleCommand(const String& command) {
cli << _("======== ======== ====== ===============================") << NORMAL << ENDL;
} else {
for (int i = 1 ; i < level ; ++i) cli << _(" ");
cli << String::Format(_("%8.5f %8.5f %6d %s"), item.time(), 1000 * item.avg_time(), item.calls, item.name.c_str()) << ENDL;
cli << String::Format(_("%8.5f %8.5f %6d %s"), item.total_time(), 1000 * item.avg_time(), item.calls, item.name.c_str()) << ENDL;
}
// show children
vector<FunctionProfileP> children;