mirror of
https://github.com/ppy/osu
synced 2025-04-17 20:45:49 +00:00
Fix logo visualisation trying to catch up after being off-screen (#5222)
Fix logo visualisation trying to catch up after being off-screen
This commit is contained in:
commit
c9535dcc1e
@ -131,7 +131,8 @@ namespace osu.Game.Screens.Menu
|
|||||||
{
|
{
|
||||||
base.LoadComplete();
|
base.LoadComplete();
|
||||||
|
|
||||||
Scheduler.AddDelayed(updateAmplitudes, time_between_updates, true);
|
var delayed = Scheduler.AddDelayed(updateAmplitudes, time_between_updates, true);
|
||||||
|
delayed.PerformRepeatCatchUpExecutions = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update()
|
protected override void Update()
|
||||||
|
Loading…
Reference in New Issue
Block a user