1
0
mirror of synced 2024-11-24 07:30:21 +01:00

WindowのFPS表示を削除 (#572)

This commit is contained in:
Takkkom 2024-02-05 20:05:55 +09:00 committed by GitHub
parent c64a0aed49
commit ce59131d69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -768,7 +768,6 @@ namespace TJAPlayer3
Timer?.Update(); Timer?.Update();
SoundManager.PlayTimer?.Update(); SoundManager.PlayTimer?.Update();
FPS?.Update(); FPS?.Update();
ShowWindowTitleWithSoundType();
if (BeatScaling != null) if (BeatScaling != null)
{ {
@ -3143,7 +3142,7 @@ for (int i = 0; i < 3; i++) {
delay = "(" + SoundManager.GetSoundDelay() + "ms)"; delay = "(" + SoundManager.GetSoundDelay() + "ms)";
} }
AssemblyName asmApp = Assembly.GetExecutingAssembly().GetName(); AssemblyName asmApp = Assembly.GetExecutingAssembly().GetName();
base.Text = asmApp.Name + " Ver." + VERSION + " (" + SoundManager.GetCurrentSoundDeviceType() + delay + ") (" + ((FPS != null) ? FPS.NowFPS : "??") + " FPS)"; base.Text = asmApp.Name + " Ver." + VERSION + " (" + SoundManager.GetCurrentSoundDeviceType() + delay + ")";
} }
private void t終了処理() private void t終了処理()