Adjust delays to start at 0

This commit is contained in:
DrabWeb 2017-03-15 08:51:07 -03:00
parent 847d485d5f
commit 20685d51cd
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public IEnumerable<Score> Scores
};
scrollFlow.Add(ls);
ls.Delay(i * 50, true);
ls.Delay((i - 1) * 50, true);
ls.Show();
}