mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 12:57:39 +09:00
Change strings to verbatim
This commit is contained in:
parent
7aa361d772
commit
e913c8f92f
@ -24,7 +24,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
|||||||
protected override FilterCriteria CreateFilterCriteria()
|
protected override FilterCriteria CreateFilterCriteria()
|
||||||
{
|
{
|
||||||
var criteria = base.CreateFilterCriteria();
|
var criteria = base.CreateFilterCriteria();
|
||||||
criteria.Category = "realtime";
|
criteria.Category = @"realtime";
|
||||||
return criteria;
|
return criteria;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,11 +42,11 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
|
|||||||
switch (categoryDropdown.Current.Value)
|
switch (categoryDropdown.Current.Value)
|
||||||
{
|
{
|
||||||
case PlaylistsCategory.Normal:
|
case PlaylistsCategory.Normal:
|
||||||
criteria.Category = "normal";
|
criteria.Category = @"normal";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PlaylistsCategory.Spotlight:
|
case PlaylistsCategory.Spotlight:
|
||||||
criteria.Category = "spotlight";
|
criteria.Category = @"spotlight";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user