Remove AutoGenerator workaround of now-fixed issue

This commit is contained in:
ekrctb
2021-04-16 13:06:02 +09:00
parent 91c7d8d26c
commit a965e8a75d
5 changed files with 8 additions and 19 deletions

View File

@ -125,10 +125,6 @@ namespace osu.Game.Rulesets.Catch.Replays
private void addFrame(double time, float? position = null, bool dashing = false)
{
// todo: can be removed once FramedReplayInputHandler correctly handles rewinding before first frame.
if (Replay.Frames.Count == 0)
Replay.Frames.Add(new CatchReplayFrame(time - 1, position, false, null));
var last = currentFrame;
currentFrame = new CatchReplayFrame(time, position, dashing, last);
Replay.Frames.Add(currentFrame);