Skip to content

Commit

Permalink
some missed ones
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Oct 6, 2021
1 parent 15fbf96 commit 0c1ae2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Tau/Objects/TauHitObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ public bool LastInCombo

protected override HitWindows CreateHitWindows() => new TauHitWindows();

protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);

TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
TimePreempt = (float)IBeatmapDifficultyInfo.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
TimeFadeIn = 100;
}

Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Tau/UI/TauResumeOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class TauResumeOverlay : ResumeOverlay

public TauResumeOverlay(BeatmapDifficulty difficulty)
{
angleRange = (float)BeatmapDifficulty.DifficultyRange(difficulty.CircleSize, 75, 25, 10);
angleRange = (float)IBeatmapDifficultyInfo.DifficultyRange(difficulty.CircleSize, 75, 25, 10);
}

[BackgroundDependencyLoader]
Expand Down

0 comments on commit 0c1ae2c

Please sign in to comment.