1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 23:22:55 +08:00

Fix redundant string interpolation

This commit is contained in:
Dean Herbert 2017-11-27 18:20:13 +09:00
parent 51372d7cda
commit 96d42b3e5b

View File

@ -49,7 +49,7 @@ namespace osu.Game.Screens.Select
[BackgroundDependencyLoader]
private void load(OsuColour colours, AudioManager audio)
{
sampleConfirm = audio.Sample.Get($@"SongSelect/confirm-selection");
sampleConfirm = audio.Sample.Get(@"SongSelect/confirm-selection");
Footer.AddButton(@"mods", colours.Yellow, modSelect, Key.F1, float.MaxValue);