This commit is contained in:
Arvid Norberg 2004-06-05 12:24:35 +00:00
parent 190fc85dce
commit a67d44c601
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ std::string add_suffix(float val)
return to_string(val, i==0?7:6) + prefix[i];
val /= 1000.f;
}
return to_string(val, 6) + prefix[i];
return to_string(val, 6) + "PB";
}
std::string progress_bar(float progress, int width)