change fps display to display tps instead when vsync is on

This commit is contained in:
RandomityGuy 2025-02-14 21:39:39 +05:30
parent 6044889270
commit 47b10edbab

View file

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