mirror of
https://github.com/ppy/osu
synced 2025-01-25 23:32:58 +00:00
Fix some warnings.
This commit is contained in:
parent
71045169f6
commit
bc53642cab
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user