mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 07:22:54 +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);
|
||||
|
||||
// Todo: Complete
|
||||
|
||||
return newRow;
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
public LegacyConverter(ObjectRow previousrow, Beatmap beatmap)
|
||||
public LegacyConverter(Beatmap beatmap)
|
||||
{
|
||||
this.beatmap = beatmap;
|
||||
|
||||
@ -118,7 +118,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
|
||||
if (conversion == null)
|
||||
yield break;
|
||||
|
||||
foreach (ManiaHitObject obj in conversion.GenerateConversion())
|
||||
foreach (ManiaHitObject obj in conversion.GenerateConversion().HitObjects)
|
||||
yield return obj;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user