add some comments

This commit is contained in:
qianlifeng
2014-01-14 23:31:24 +08:00
parent 820d0cde86
commit ea0e80b12b
2 changed files with 10 additions and 2 deletions

View File

@@ -74,7 +74,14 @@ namespace WinAlfred
{
if ((currentScore >= next.Result.Score && currentScore <= prev.Result.Score))
{
location = index;
if (currentScore == next.Result.Score)
{
location = index + 1;
}
else
{
location = index;
}
}
}
}