mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Merge remote-tracking branch 'upstream/master' into remove-usings
This commit is contained in:
@ -320,10 +320,10 @@ namespace osu.Game.Overlays
|
||||
updateDisplay(current, isNext ? TransformDirection.Next : TransformDirection.Prev);
|
||||
}
|
||||
|
||||
protected override void PerformLoad(Framework.Game game)
|
||||
protected override void Load(Framework.Game game)
|
||||
{
|
||||
this.game = game;
|
||||
base.PerformLoad(game);
|
||||
base.Load(game);
|
||||
}
|
||||
|
||||
Action pendingBeatmapSwitch;
|
||||
@ -347,7 +347,7 @@ namespace osu.Game.Overlays
|
||||
|
||||
MusicControllerBackground newBackground;
|
||||
|
||||
(newBackground = new MusicControllerBackground(beatmap)).Preload(game, delegate
|
||||
(newBackground = new MusicControllerBackground(beatmap)).LoadAsync(game, delegate
|
||||
{
|
||||
|
||||
dragContainer.Add(newBackground);
|
||||
|
Reference in New Issue
Block a user