Fix unnecessary + character

This commit is contained in:
Dean Herbert 2020-08-06 12:34:42 +09:00
parent d5324be07d
commit 3b15a50f0d
1 changed files with 7 additions and 1 deletions

View File

@ -49,7 +49,13 @@ public void TestSuperShortSpinner(bool autoplay)
private Drawable testSingle(float circleSize, bool auto = false, double length = 3000) private Drawable testSingle(float circleSize, bool auto = false, double length = 3000)
{ {
var spinner = new Spinner { StartTime = Time.Current + 2000, EndTime = Time.Current + +2000 + length }; const double delay = 2000;
var spinner = new Spinner
{
StartTime = Time.Current + delay,
EndTime = Time.Current + delay + length
};
spinner.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = circleSize }); spinner.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty { CircleSize = circleSize });