From 47b10edbab926c7656c1ccadba528b476203f6a9 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Fri, 14 Feb 2025 21:39:39 +0530 Subject: [PATCH] change fps display to display tps instead when vsync is on --- src/gui/PlayGui.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/PlayGui.hx b/src/gui/PlayGui.hx index 79dc5653..2d8c1280 100644 --- a/src/gui/PlayGui.hx +++ b/src/gui/PlayGui.hx @@ -1177,7 +1177,7 @@ class PlayGui { this.powerupImageScene.setElapsedTime(timeState.dt); if (this.fpsMeter != null) { - this.fpsMeter.text.text = '${Math.floor(ProfilerUI.instance.fps)} fps'; + this.fpsMeter.text.text = '${Math.floor(ProfilerUI.instance.fps)} ${Settings.optionsSettings.vsync ? "T" : "F"}PS'; } this.updateMiddleMessages(timeState.dt); if (Net.isMP) {