1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 05:47:20 +08:00

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
{
/// <summary>
/// Volume percentages lower than this are typically inaudible.
/// Volume percentages lower than or equal to this are typically inaudible.
/// </summary>
private const int muted_threshold = 5;
/// <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>
private const int low_volume_threshold = 20;