Fix hold for menu button occasionally disappearing

This commit is contained in:
Dean Herbert
2018-11-19 12:06:47 +09:00
parent eb5cb44a60
commit 970ea928ae

View File

@ -77,7 +77,7 @@ namespace osu.Game.Screens.Play.HUD
Alpha = 1;
else
Alpha = Interpolation.ValueAt(
MathHelper.Clamp(Clock.ElapsedFrameTime, 0, 1000),
MathHelper.Clamp(Clock.ElapsedFrameTime, 0, 200),
Alpha, MathHelper.Clamp(1 - positionalAdjust, 0.04f, 1), 0, 200, Easing.OutQuint);
}