1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 11:12:54 +08:00

Remove repeated TimeStarted check

This commit is contained in:
Andrei Zavatski 2024-02-24 16:42:44 +03:00
parent 9b526912e9
commit 4bba0eaf4b
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
{
base.Update();
if (spmContainer.Alpha == 0 && drawableSpinner.Result?.TimeStarted != null)
if (spmContainer.Alpha == 0)
fadeCounterOnTimeStart();
}

View File

@ -126,7 +126,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
{
base.Update();
if (spmContainer.Alpha == 0 && drawableSpinner.Result?.TimeStarted != null)
if (spmContainer.Alpha == 0)
fadeCounterOnTimeStart();
}