Fix exception messaging

This commit is contained in:
Dean Herbert 2021-08-13 14:46:57 +09:00
parent 641d57e5e1
commit 93574acf72

View File

@ -82,7 +82,7 @@ namespace osu.Game.Screens.Play.HUD
if (isTracked)
{
if (trackedScore != null)
throw new InvalidOperationException("Cannot track more than one scores.");
throw new InvalidOperationException("Cannot track more than one score.");
trackedScore = drawable;
}