1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 06:01:18 +08:00

Merge pull request #12734 from Susko3/make-max-volume-feel-better

Make adjusting volume to max feel better
This commit is contained in:
Dan Balasescu
2021-05-10 09:35:20 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -204,7 +204,7 @@ namespace osu.Game.Overlays.Volume
{
displayVolume = value;
if (displayVolume > 0.99f)
if (displayVolume >= 0.995f)
{
text.Text = "MAX";
maxGlow.EffectColour = meterColour.Opacity(2f);