Fix logo visualisation trying to catch up after being off-screen

This commit is contained in:
Dean Herbert 2019-07-03 15:22:17 +09:00
parent 7c5e4c60c1
commit 6e308945b1
1 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,8 @@ protected override void 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()