From 96d42b3e5b6a42ed5947d4485116e2d16f718902 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 27 Nov 2017 18:20:13 +0900 Subject: [PATCH] Fix redundant string interpolation --- osu.Game/Screens/Select/PlaySongSelect.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Screens/Select/PlaySongSelect.cs b/osu.Game/Screens/Select/PlaySongSelect.cs index 992bfa52ee..bba6ddf577 100644 --- a/osu.Game/Screens/Select/PlaySongSelect.cs +++ b/osu.Game/Screens/Select/PlaySongSelect.cs @@ -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);