mirror of https://github.com/ppy/osu
Remove repeated TimeStarted check
This commit is contained in:
parent
9b526912e9
commit
4bba0eaf4b
|
@ -120,7 +120,7 @@ protected override void Update()
|
|||
{
|
||||
base.Update();
|
||||
|
||||
if (spmContainer.Alpha == 0 && drawableSpinner.Result?.TimeStarted != null)
|
||||
if (spmContainer.Alpha == 0)
|
||||
fadeCounterOnTimeStart();
|
||||
}
|
||||
|
||||
|
|
|
@ -126,7 +126,7 @@ protected override void Update()
|
|||
{
|
||||
base.Update();
|
||||
|
||||
if (spmContainer.Alpha == 0 && drawableSpinner.Result?.TimeStarted != null)
|
||||
if (spmContainer.Alpha == 0)
|
||||
fadeCounterOnTimeStart();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue