1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 18:30:23 +08:00

Fix incorrect verbatim strings.

This commit is contained in:
Dean Herbert
2017-04-06 15:31:21 +09:00
Unverified
parent 6285f3eea8
commit 856696b17e
2 changed files with 5 additions and 5 deletions
+2 -2
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);
}
}
}
+3 -3
View File
@@ -33,9 +33,9 @@ namespace osu.Game.Screens.Play
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
AddButton(@"Continue", colours.Green, OnResume);
AddButton(@"Retry", colours.YellowDark, OnRetry);
AddButton(@"Quit to Main Menu", new Color4(170, 27, 39, 255), OnQuit);
AddButton("Continue", colours.Green, OnResume);
AddButton("Retry", colours.YellowDark, OnRetry);
AddButton("Quit", new Color4(170, 27, 39, 255), OnQuit);
}
}
}