CI fixes.

This commit is contained in:
smoogipooo
2017-05-11 13:11:36 +09:00
parent 94585672b6
commit cdf827df8e
6 changed files with 9 additions and 22 deletions

View File

@ -2,10 +2,7 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
using osu.Game.Rulesets.Objects.Drawables;
@ -13,7 +10,7 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
public class DrawableNote : DrawableManiaHitObject<Note>
{
private NotePiece headPiece;
private readonly NotePiece headPiece;
public DrawableNote(Note hitObject)
: base(hitObject)
@ -30,7 +27,7 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
public override Color4 AccentColour
{
get { return AccentColour; }
get { return base.AccentColour; }
set
{
if (base.AccentColour == value)