1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 01:10:58 +08:00

Fix test setting invalid TimeOffset

This commit is contained in:
ekrctb
2023-02-09 17:43:04 +09:00
Unverified
parent 258de3b2d8
commit 5ddaf8ea3c
@@ -22,12 +22,18 @@ namespace osu.Game.Tests.Visual.Gameplay
[Cached(typeof(ScoreProcessor))]
private TestScoreProcessor scoreProcessor = new TestScoreProcessor();
private readonly OsuHitWindows hitWindows = new OsuHitWindows();
private readonly OsuHitWindows hitWindows;
private UnstableRateCounter counter;
private double prev;
public TestSceneUnstableRateCounter()
{
hitWindows = new OsuHitWindows();
hitWindows.SetDifficulty(5);
}
[SetUpSteps]
public void SetUp()
{