Fix `aa_width` being incorrect

This commit is contained in:
Salman Ahmed 2024-02-27 02:43:02 +03:00
parent 18e26e39fe
commit 83af9dfb39
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ private partial class LegacyDrawableSliderPath : DrawableSliderPath
protected override Color4 ColourAt(float position)
{
// https://github.com/peppy/osu-stable-reference/blob/3ea48705eb67172c430371dcfc8a16a002ed0d3d/osu!/Graphics/Renderers/MmSliderRendererGL.cs#L99
const float aa_width = 0.5f / 64f;
const float aa_width = 3f / 256f;
Color4 shadow = new Color4(0, 0, 0, 0.25f);
Color4 outerColour = AccentColour.Darken(0.1f);