Timer formatting: change 200%+ to 200+%
GitOrigin-RevId: d04c35760d8e05404fda01c0adac8a5c465423b7
This commit is contained in:
parent
80f1104d82
commit
2d2a3fde7d
@ -43,7 +43,7 @@ namespace SemiColinGames {
|
|||||||
int numStars = FMath.Clamp(100 * value / totalFrames, 1, 100);
|
int numStars = FMath.Clamp(100 * value / totalFrames, 1, 100);
|
||||||
string prefix = String.Format("{0,3}-{1,3}%: ", i * 10, (i + 1) * 10);
|
string prefix = String.Format("{0,3}-{1,3}%: ", i * 10, (i + 1) * 10);
|
||||||
if (i == histogram.Length - 1) {
|
if (i == histogram.Length - 1) {
|
||||||
prefix = " 200%+: ";
|
prefix = " 200+%: ";
|
||||||
}
|
}
|
||||||
string stars = new string('*', numStars);
|
string stars = new string('*', numStars);
|
||||||
Debug.WriteLine(String.Format("{0}{1,-100} {2}", prefix, stars, value));
|
Debug.WriteLine(String.Format("{0}{1,-100} {2}", prefix, stars, value));
|
||||||
|
Loading…
Reference in New Issue
Block a user