Fix catch positional data being incorrectly recorded

This commit is contained in:
Dean Herbert
2020-03-24 15:38:54 +09:00
parent 96a849f897
commit 388cf5c83a
7 changed files with 14 additions and 11 deletions

View File

@ -75,7 +75,7 @@ namespace osu.Game.Rulesets.UI
target.Frames.Add(frame);
}
protected abstract ReplayFrame HandleFrame(Vector2 position, List<T> actions, ReplayFrame previousFrame);
protected abstract ReplayFrame HandleFrame(Vector2 mousePosition, List<T> actions, ReplayFrame previousFrame);
}
public abstract class ReplayRecorder : Component