mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-04-22 10:41:38 +00:00
change fps display to display tps instead when vsync is on
This commit is contained in:
parent
3900bdcf0f
commit
9fe9d639c2
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue