Add missing parenthesis in log message

This commit is contained in:
Dean Herbert 2022-10-03 18:42:40 +09:00
parent 4dbac917fc
commit 13ee5c179e
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ public void PresentScore(IScoreInfo score, ScorePresentType presentType = ScoreP
PerformFromScreen(screen =>
{
Logger.Log($"{nameof(PresentScore)} updating beatmap ({databasedBeatmap}) and ruleset ({databasedScore.ScoreInfo.Ruleset} to match score");
Logger.Log($"{nameof(PresentScore)} updating beatmap ({databasedBeatmap}) and ruleset ({databasedScore.ScoreInfo.Ruleset} to match score)");
Ruleset.Value = databasedScore.ScoreInfo.Ruleset;
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(databasedBeatmap);