Aaand docs again.

This commit is contained in:
Péter Nemes
2017-06-07 20:29:03 +02:00
parent 1f311cca06
commit a0bdab9f0d
3 changed files with 7 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace osu.Game.Rulesets.Osu.OsuDifficulty.Utils
{
get
{
if (i > Count - 1)
if (i < 0 || i > Count - 1)
throw new IndexOutOfRangeException();
i += marker;