From bf94587ca7d925e0da4f535fff476d7616631114 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 23 Mar 2017 10:56:30 +0900 Subject: [PATCH] Add TODO. --- osu.Game.Modes.Taiko/Objects/DrumRoll.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs index 78e9202f20..cdb8ef2405 100644 --- a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs +++ b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs @@ -62,6 +62,7 @@ namespace osu.Game.Modes.Taiko.Objects Velocity = timing.SliderVelocityAt(StartTime) * difficulty.SliderMultiplier / 1000; TickTimeDistance = timing.BeatLengthAt(StartTime); + //TODO: move this to legacy conversion code to allow for direct division without special case. if (difficulty.SliderTickRate == 3) TickTimeDistance /= 3; else @@ -100,4 +101,4 @@ namespace osu.Game.Modes.Taiko.Objects return ret; } } -} \ No newline at end of file +}