1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 15:42:54 +08:00

Merge pull request #29707 from Sheppsu/replay-analysis-marker-depth

Fix replay analysis marker depth when rewinding
This commit is contained in:
Dean Herbert 2024-09-06 12:03:35 +09:00 committed by GitHub
commit 96042349ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,6 +22,7 @@ namespace osu.Game.Rulesets.Osu.UI.ReplayAnalysis
protected override void OnApply(AnalysisFrameEntry entry) protected override void OnApply(AnalysisFrameEntry entry)
{ {
Position = entry.Position; Position = entry.Position;
Depth = -(float)entry.LifetimeEnd;
} }
} }
} }