mirror of https://github.com/ppy/osu
Fix Argon and Trianles spinner stutter
This commit is contained in:
parent
05f0b4796c
commit
e7d8ca3292
|
@ -120,7 +120,7 @@ protected override void Update()
|
|||
{
|
||||
base.Update();
|
||||
|
||||
if (!spmContainer.IsPresent && drawableSpinner.Result?.TimeStarted != null)
|
||||
if (spmContainer.Alpha != 0 && drawableSpinner.Result?.TimeStarted != null)
|
||||
fadeCounterOnTimeStart();
|
||||
}
|
||||
|
||||
|
|
|
@ -126,7 +126,7 @@ protected override void Update()
|
|||
{
|
||||
base.Update();
|
||||
|
||||
if (!spmContainer.IsPresent && drawableSpinner.Result?.TimeStarted != null)
|
||||
if (spmContainer.Alpha != 0 && drawableSpinner.Result?.TimeStarted != null)
|
||||
fadeCounterOnTimeStart();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue