mirror of
https://github.com/ppy/osu
synced 2025-01-10 08:09:40 +00:00
Restore previous directionality logic to avoid logic differences
This commit is contained in:
parent
59e9c2639a
commit
c9515653b3
@ -123,7 +123,7 @@ namespace osu.Game.Rulesets.UI
|
||||
state = updateReplay(ref proposedTime);
|
||||
|
||||
if (proposedTime != manualClock.CurrentTime)
|
||||
direction = proposedTime >= manualClock.CurrentTime ? 1 : -1;
|
||||
direction = proposedTime > manualClock.CurrentTime ? 1 : -1;
|
||||
|
||||
manualClock.CurrentTime = proposedTime;
|
||||
manualClock.Rate = Math.Abs(parentGameplayClock.Rate) * direction;
|
||||
|
Loading…
Reference in New Issue
Block a user