From c268500f898bbf0fb5c233c9c5404985d4270263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adonais=20Romero=20Gonz=C3=A1lez?= Date: Sat, 15 Oct 2016 14:01:11 -0500 Subject: [PATCH] Minor variable change --- osu.Game/GameModes/Play/Catch/CatchComboCounter.cs | 2 +- osu.Game/GameModes/Play/Osu/OsuComboCounter.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game/GameModes/Play/Catch/CatchComboCounter.cs b/osu.Game/GameModes/Play/Catch/CatchComboCounter.cs index 078a856bce..240fa5cd07 100644 --- a/osu.Game/GameModes/Play/Catch/CatchComboCounter.cs +++ b/osu.Game/GameModes/Play/Catch/CatchComboCounter.cs @@ -16,7 +16,7 @@ namespace osu.Game.GameModes.Play.Catch /// public class CatchComboCounter : OsuComboCounter { - protected override bool CanPopOutWhenBackwards => true; + protected override bool CanPopOutWhileRolling => true; protected override string FormatCount(ulong count) { diff --git a/osu.Game/GameModes/Play/Osu/OsuComboCounter.cs b/osu.Game/GameModes/Play/Osu/OsuComboCounter.cs index ef47569582..8d4f9b4e67 100644 --- a/osu.Game/GameModes/Play/Osu/OsuComboCounter.cs +++ b/osu.Game/GameModes/Play/Osu/OsuComboCounter.cs @@ -20,7 +20,7 @@ namespace osu.Game.GameModes.Play.Osu protected uint ScheduledPopOutCurrentId = 0; protected virtual float PopOutSmallScale => 1.1f; - protected virtual bool CanPopOutWhenBackwards => false; + protected virtual bool CanPopOutWhileRolling => false; public Vector2 InnerCountPosition @@ -101,7 +101,7 @@ namespace osu.Game.GameModes.Play.Osu else CountSpriteText.Show(); - if (CanPopOutWhenBackwards) + if (CanPopOutWhileRolling) transformPopOut(currentValue, newValue); else transformNoPopOut(newValue);