diff --git a/Shared/Timer.cs b/Shared/Timer.cs index 64fe66a..883edd2 100644 --- a/Shared/Timer.cs +++ b/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));