mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
change fps display to display tps instead when vsync is on
This commit is contained in:
parent
6044889270
commit
47b10edbab
1 changed files with 1 additions and 1 deletions
|
|
@ -1177,7 +1177,7 @@ class PlayGui {
|
||||||
this.powerupImageScene.setElapsedTime(timeState.dt);
|
this.powerupImageScene.setElapsedTime(timeState.dt);
|
||||||
|
|
||||||
if (this.fpsMeter != null) {
|
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);
|
this.updateMiddleMessages(timeState.dt);
|
||||||
if (Net.isMP) {
|
if (Net.isMP) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue