Fix incorrect verbatim strings.

This commit is contained in:
Dean Herbert
2017-04-06 15:31:21 +09:00
parent 6285f3eea8
commit 856696b17e
2 changed files with 5 additions and 5 deletions

View File

@ -30,8 +30,8 @@ namespace osu.Game.Screens.Play
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
AddButton(@"Retry", colours.YellowDark, OnRetry);
AddButton(@"Quit to Main Menu", new Color4(170, 27, 39, 255), OnQuit);
AddButton("Retry", colours.YellowDark, OnRetry);
AddButton("Quit", new Color4(170, 27, 39, 255), OnQuit);
}
}
}