Fix some warnings.

This commit is contained in:
Dean Herbert 2016-11-04 15:40:05 +09:00
parent 71045169f6
commit bc53642cab
2 changed files with 5 additions and 2 deletions

View File

@ -13,6 +13,11 @@ namespace osu.Game.Beatmaps.Timing
{ {
public double BeatLength; public double BeatLength;
public TimingChange(double beatLength)
{
BeatLength = beatLength;
}
public double BPM => 60000 / BeatLength; public double BPM => 60000 / BeatLength;
} }
} }

View File

@ -27,8 +27,6 @@ namespace osu.Game.Graphics.Background
Depth = float.MinValue; Depth = float.MinValue;
} }
Texture texture;
protected override void Load(BaseGame game) protected override void Load(BaseGame game)
{ {
base.Load(game); base.Load(game);