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 3900bdcf0f
commit 9fe9d639c2

View file

@ -1171,7 +1171,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) {