mirror of
https://github.com/ppy/osu
synced 2025-01-07 06:40:05 +00:00
Remove unused parmeter
This commit is contained in:
parent
bd2de89918
commit
49731f4c05
@ -121,14 +121,14 @@ namespace osu.Game.Screens.Play.BreaksOverlay
|
||||
|
||||
using (BeginAbsoluteSequence(b.StartTime))
|
||||
{
|
||||
Schedule(() => showBreak(b));
|
||||
Schedule(showBreak);
|
||||
using (BeginDelayedSequence(b.Duration - fade_duration))
|
||||
Schedule(hideBreak);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void showBreak(BreakPeriod b)
|
||||
private void showBreak()
|
||||
{
|
||||
if (letterboxing)
|
||||
letterboxOverlay.Show();
|
||||
|
Loading…
Reference in New Issue
Block a user