mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Restore previous directionality logic to avoid logic differences
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user