Timer formatting: change 200%+ to 200+%

GitOrigin-RevId: d04c35760d8e05404fda01c0adac8a5c465423b7
This commit is contained in:
Colin McMillen 2020-02-03 19:01:45 -05:00
parent 80f1104d82
commit 2d2a3fde7d

View File

@ -43,7 +43,7 @@ namespace SemiColinGames {
int numStars = FMath.Clamp(100 * value / totalFrames, 1, 100);
string prefix = String.Format("{0,3}-{1,3}%: ", i * 10, (i + 1) * 10);
if (i == histogram.Length - 1) {
prefix = " 200%+: ";
prefix = " 200+%: ";
}
string stars = new string('*', numStars);
Debug.WriteLine(String.Format("{0}{1,-100} {2}", prefix, stars, value));