From ca0bea753439ce81ddb5eb86ef32fb6cc369c110 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 29 Nov 2016 22:05:21 +0900 Subject: [PATCH] Rename MaximumCombo to HighestCombo. --- osu.Game/Modes/ScoreProcesssor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Modes/ScoreProcesssor.cs b/osu.Game/Modes/ScoreProcesssor.cs index 63a1ed1528..d94a424098 100644 --- a/osu.Game/Modes/ScoreProcesssor.cs +++ b/osu.Game/Modes/ScoreProcesssor.cs @@ -21,13 +21,13 @@ namespace osu.Game.Modes public readonly BindableInt Combo = new BindableInt(); - public readonly BindableInt MaximumCombo = new BindableInt(); + public readonly BindableInt HighestCombo = new BindableInt(); public readonly List Judgements = new List(); public ScoreProcessor() { - Combo.ValueChanged += delegate { MaximumCombo.Value = Math.Max(MaximumCombo.Value, Combo.Value); }; + Combo.ValueChanged += delegate { HighestCombo.Value = Math.Max(HighestCombo.Value, Combo.Value); }; } public void AddJudgement(JudgementInfo judgement)