mirror of
https://github.com/ppy/osu.git
synced 2025-03-18 04:49:34 +08:00
Fix incorrect precision specification for button disable check
This commit is contained in:
parent
3cbcb702f6
commit
8bd66f1ed7
@ -131,7 +131,7 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
||||
}
|
||||
|
||||
if (useAverageButton != null)
|
||||
useAverageButton.Enabled.Value = !Precision.AlmostEquals(lastPlayAverage, -Current.Value, Current.Precision);
|
||||
useAverageButton.Enabled.Value = !Precision.AlmostEquals(lastPlayAverage, -Current.Value, Current.Precision / 2);
|
||||
|
||||
realmWriteTask = realm.WriteAsync(r =>
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user