Add "or equal to" to volume threshold xmldocs

This commit is contained in:
Naxess 2021-06-27 02:30:12 +02:00
parent 0c0fd291d9
commit 2cd7eda3c4

View File

@ -13,12 +13,12 @@ namespace osu.Game.Rulesets.Edit.Checks
public class CheckMutedObjects : ICheck public class CheckMutedObjects : ICheck
{ {
/// <summary> /// <summary>
/// Volume percentages lower than this are typically inaudible. /// Volume percentages lower than or equal to this are typically inaudible.
/// </summary> /// </summary>
private const int muted_threshold = 5; private const int muted_threshold = 5;
/// <summary> /// <summary>
/// Volume percentages lower than this can sometimes be inaudible depending on sample used and music volume. /// Volume percentages lower than or equal to this can sometimes be inaudible depending on sample used and music volume.
/// </summary> /// </summary>
private const int low_volume_threshold = 20; private const int low_volume_threshold = 20;