1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 15:03:13 +08:00

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 (isTracked)
{ {
if (trackedScore != null) if (trackedScore != null)
throw new InvalidOperationException("Cannot track more than one scores."); throw new InvalidOperationException("Cannot track more than one score.");
trackedScore = drawable; trackedScore = drawable;
} }