1
0
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:
smoogipooo 2017-05-18 12:10:01 +09:00
parent eebd5a910e
commit 22128f158c
2 changed files with 4 additions and 2 deletions

View File

@ -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)

View File

@ -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;
}