Remove incorrect verbatim string specifications.

This commit is contained in:
Dean Herbert
2016-12-01 16:04:58 +09:00
parent 167b559a95
commit 0b0fe2a857

View File

@ -39,7 +39,7 @@ namespace osu.Game.Overlays.Options.General
{
new SpriteText
{
Text = @"Connection failing :(",
Text = "Connection failing :(",
},
};
break;
@ -48,7 +48,7 @@ namespace osu.Game.Overlays.Options.General
{
new SpriteText
{
Text = @"Connecting...",
Text = "Connecting...",
},
};
break;
@ -57,7 +57,7 @@ namespace osu.Game.Overlays.Options.General
{
new SpriteText
{
Text = $@"Connected as {api.Username}!",
Text = $"Connected as {api.Username}!",
},
new OsuButton
{