1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:42:57 +08:00

Remove redundant cast

This commit is contained in:
Dean Herbert 2024-03-16 13:18:42 +08:00
parent c0ae94dc60
commit 15c0b1a2ec
No known key found for this signature in database

View File

@ -101,7 +101,7 @@ namespace osu.Game.Screens.Play
private void updateFadeState() private void updateFadeState()
{ {
// Matches SettingsToolboxGroup // Matches SettingsToolboxGroup
background.FadeTo(IsHovered ? 1 : 0.1f, (float)500, Easing.OutQuint); background.FadeTo(IsHovered ? 1 : 0.1f, 500, Easing.OutQuint);
} }
} }
} }