Browse Source

Timer formatting: change 200%+ to 200+%

GitOrigin-RevId: d04c35760d
master
Colin McMillen 4 years ago
parent
commit
2d2a3fde7d
  1. 2
      Shared/Timer.cs

2
Shared/Timer.cs

@ -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));

Loading…
Cancel
Save