mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 10:03:05 +08:00
Fix a few errors.
This commit is contained in:
parent
eebd5a910e
commit
22128f158c
@ -339,6 +339,8 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
|
|||||||
add(newRow, holdColumn, startTime, separationTime * repeatCount);
|
add(newRow, holdColumn, startTime, separationTime * repeatCount);
|
||||||
|
|
||||||
// Todo: Complete
|
// Todo: Complete
|
||||||
|
|
||||||
|
return newRow;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void add(ObjectRow row, int column, double startTime, double endTime, int siblings = 1)
|
private void add(ObjectRow row, int column, double startTime, double endTime, int siblings = 1)
|
||||||
|
@ -32,7 +32,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
|
|||||||
|
|
||||||
private readonly Beatmap beatmap;
|
private readonly Beatmap beatmap;
|
||||||
|
|
||||||
public LegacyConverter(ObjectRow previousrow, Beatmap beatmap)
|
public LegacyConverter(Beatmap beatmap)
|
||||||
{
|
{
|
||||||
this.beatmap = beatmap;
|
this.beatmap = beatmap;
|
||||||
|
|
||||||
@ -118,7 +118,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
|
|||||||
if (conversion == null)
|
if (conversion == null)
|
||||||
yield break;
|
yield break;
|
||||||
|
|
||||||
foreach (ManiaHitObject obj in conversion.GenerateConversion())
|
foreach (ManiaHitObject obj in conversion.GenerateConversion().HitObjects)
|
||||||
yield return obj;
|
yield return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user