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:
Dean Herbert 2019-07-04 01:11:17 +09:00 committed by GitHub
commit c9535dcc1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,8 @@ namespace osu.Game.Screens.Menu
{
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()