Standardise variables

This commit is contained in:
Dean Herbert
2021-07-09 13:24:26 +09:00
parent b7803b889e
commit 90326f8864
6 changed files with 10 additions and 10 deletions

View File

@ -17,7 +17,7 @@ namespace osu.Game.Rulesets.Osu.Mods
MinValue = 0,
MaxValue = 10,
ExtendedMaxValue = 11,
ReadFromDifficulty = diff => diff.CircleSize,
ReadCurrentFromDifficulty = diff => diff.CircleSize,
};
[SettingSource("Approach Rate", "Override a beatmap's set AR.", LAST_SETTING_ORDER + 1, SettingControlType = typeof(DifficultyAdjustSettingsControl))]
@ -27,7 +27,7 @@ namespace osu.Game.Rulesets.Osu.Mods
MinValue = 0,
MaxValue = 10,
ExtendedMaxValue = 11,
ReadFromDifficulty = diff => diff.ApproachRate,
ReadCurrentFromDifficulty = diff => diff.ApproachRate,
};
public override string SettingDescription