1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00

Remove Precision call for database write shortcutting

Shouldn't be required.
This commit is contained in:
Dean Herbert 2022-03-02 14:39:28 +09:00
parent 8bd66f1ed7
commit e184b26cdd

View File

@ -140,7 +140,7 @@ namespace osu.Game.Screens.Play.PlayerSettings
if (settings == null) // only the case for tests.
return;
if (Precision.AlmostEquals(settings.Offset, Current.Value))
if (settings.Offset == Current.Value)
return;
settings.Offset = Current.Value;