mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 13:37:00 -04:00
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:
@@ -225,7 +225,7 @@ void CLISetInterface::handleCommand(const String& command) {
|
|||||||
cli << _("======== ======== ====== ===============================") << NORMAL << ENDL;
|
cli << _("======== ======== ====== ===============================") << NORMAL << ENDL;
|
||||||
} else {
|
} else {
|
||||||
for (int i = 1 ; i < level ; ++i) cli << _(" ");
|
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
|
// show children
|
||||||
vector<FunctionProfileP> children;
|
vector<FunctionProfileP> children;
|
||||||
|
|||||||
Reference in New Issue
Block a user