diff --git a/src/as/com/threerings/util/FPSDisplay.as b/src/as/com/threerings/util/FPSDisplay.as index bec800c94..b8688bd20 100644 --- a/src/as/com/threerings/util/FPSDisplay.as +++ b/src/as/com/threerings/util/FPSDisplay.as @@ -34,9 +34,7 @@ public class FPSDisplay extends TextField // the difference between 1 frame) var frames :Number = _frameStamps.length - 1; - if (frames > 0) { - this.text = String(frames / seconds); - } + this.text = String(frames / seconds); } /** Timestamps of past ENTER_FRAME events. */