1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:07:25 +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
commit 0ff0353e13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);