1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 17:00:32 +08:00

fix warnings

This commit is contained in:
Hivie
2025-08-09 22:51:07 +01:00
Unverified
parent 2af8066c4d
commit 7ed30af2df
@@ -20,7 +20,7 @@ namespace osu.Game.Screens.Play.HUD
[Resolved]
private ScoreProcessor scoreProcessor { get; set; } = null!;
public UnstableRateCounter()
protected UnstableRateCounter()
{
Current.Value = 0;
}
@@ -58,12 +58,8 @@ namespace osu.Game.Screens.Play.HUD
{
base.Dispose(isDisposing);
if (scoreProcessor != null)
{
scoreProcessor.NewJudgement -= updateDisplay;
scoreProcessor.JudgementReverted -= updateDisplay;
}
scoreProcessor.NewJudgement -= updateDisplay;
scoreProcessor.JudgementReverted -= updateDisplay;
}
}
}