1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-05 10:53:10 +08:00

Generate ManiaReplayFrame instead of ReplayFrame

This commit is contained in:
smoogipoo 2017-11-29 18:42:54 +09:00
parent dfd035d07b
commit d69fa0966f

View File

@ -41,7 +41,7 @@ namespace osu.Game.Rulesets.Mania.Replays
activeColumns ^= 1 << point.Column; activeColumns ^= 1 << point.Column;
} }
Replay.Frames.Add(new ReplayFrame(group.First().Time, activeColumns, 0, ReplayButtonState.None)); Replay.Frames.Add(new ManiaReplayFrame(group.First().Time, activeColumns));
} }
return Replay; return Replay;