mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 19:22:54 +08:00
Fix incorrect formatting for switch/case
This commit is contained in:
parent
8005ee73af
commit
d1853ea55b
@ -28,16 +28,16 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
||||
{
|
||||
default:
|
||||
case BeatmapLeaderboardScope.Global:
|
||||
text.Text = @"No scores yet. Maybe should try setting some?";
|
||||
return;
|
||||
text.Text = @"No scores yet. Maybe should try setting some?";
|
||||
return;
|
||||
|
||||
case BeatmapLeaderboardScope.Friend:
|
||||
text.Text = @"None of your friends has set a score on this map yet!";
|
||||
return;
|
||||
text.Text = @"None of your friends has set a score on this map yet!";
|
||||
return;
|
||||
|
||||
case BeatmapLeaderboardScope.Country:
|
||||
text.Text = @"No one from your country has set a score on this map yet!";
|
||||
return;
|
||||
text.Text = @"No one from your country has set a score on this map yet!";
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user