1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Merge pull request #19898 from bdach/mod-select/fix-difficulty-multiplier-rounding

Adjust rounding in mod select difficulty multiplier to match song select footer
This commit is contained in:
Dean Herbert 2022-08-22 11:18:34 +09:00 committed by GitHub
commit 3ef6c60d1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,10 +31,7 @@ namespace osu.Game.Overlays.Mods
set => current.Current = value;
}
private readonly BindableNumberWithCurrent<double> current = new BindableNumberWithCurrent<double>(1)
{
Precision = 0.01
};
private readonly BindableNumberWithCurrent<double> current = new BindableNumberWithCurrent<double>(1);
private readonly Box underlayBackground;
private readonly Box contentBackground;