forked from mirror/openmw-tes3mp
made logarithm function for calculating column widths in the output be more generic
This commit is contained in:
parent
5edfe8c41c
commit
32123aec2b
1 changed files with 2 additions and 6 deletions
|
@ -442,12 +442,8 @@ int clone(Arguments& info)
|
|||
size_t recordCount = info.data.mRecords.size();
|
||||
|
||||
int digitCount = 1; // For a nicer output
|
||||
if (recordCount > 9) ++digitCount;
|
||||
if (recordCount > 99) ++digitCount;
|
||||
if (recordCount > 999) ++digitCount;
|
||||
if (recordCount > 9999) ++digitCount;
|
||||
if (recordCount > 99999) ++digitCount;
|
||||
if (recordCount > 999999) ++digitCount;
|
||||
if (recordCount > 0)
|
||||
digitCount = (int)log10(recordCount) + 1;
|
||||
|
||||
std::cout << "Loaded " << recordCount << " records:" << std::endl << std::endl;
|
||||
|
||||
|
|
Loading…
Reference in a new issue