1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 02:29:55 +08:00

Mention fallback default in GetDivisorForBeatIndex()

This commit is contained in:
Bartłomiej Dach
2023-05-24 22:17:51 +02:00
Unverified
parent 561b759bf9
commit 6ec4ecfdd7
+1 -1
View File
@@ -154,7 +154,7 @@ namespace osu.Game.Screens.Edit
/// </summary>
/// <param name="index">The 0-based beat index.</param>
/// <param name="beatDivisor">The beat divisor.</param>
/// <param name="validDivisors">The list of valid divisors which can be chosen from. Assumes ordered from low to high.</param>
/// <param name="validDivisors">The list of valid divisors which can be chosen from. Assumes ordered from low to high. Defaults to <see cref="PREDEFINED_DIVISORS"/> if omitted.</param>
/// <returns>The applicable divisor.</returns>
public static int GetDivisorForBeatIndex(int index, int beatDivisor, int[] validDivisors = null)
{