Skip to content

Commit

Permalink
Don't call Reset() from within TestCaseTaikoHitObjects.
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Apr 1, 2017
1 parent 782c6bf commit d1e3bbb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion osu.Desktop.VisualTests/Tests/TestCaseTaikoHitObjects.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE

using System.Linq;
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Graphics.Containers;
Expand All @@ -22,7 +23,7 @@ public override void Reset()
AddToggleStep("Kiai", b =>
{
kiai = !kiai;
Reset();
updateKiaiState();
});

Add(new CirclePiece
Expand Down Expand Up @@ -102,6 +103,12 @@ public override void Reset()
});
}

private void updateKiaiState()
{
foreach (var c in Children.OfType<CirclePiece>())
c.KiaiMode = kiai;
}

private abstract class BaseCircle : Container
{
protected readonly CirclePiece Piece;
Expand Down

0 comments on commit d1e3bbb

Please sign in to comment.