1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 16:47:46 +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()
{
// Matches SettingsToolboxGroup
background.FadeTo(IsHovered ? 1 : 0.1f, (float)500, Easing.OutQuint);
background.FadeTo(IsHovered ? 1 : 0.1f, 500, Easing.OutQuint);
}
}
}