1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 12:02:55 +08:00

Adjust delays to start at 0

This commit is contained in:
DrabWeb 2017-03-15 08:51:07 -03:00
parent 847d485d5f
commit 20685d51cd

View File

@ -43,7 +43,7 @@ namespace osu.Game.Screens.Select.Leaderboards
};
scrollFlow.Add(ls);
ls.Delay(i * 50, true);
ls.Delay((i - 1) * 50, true);
ls.Show();
}