1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 12:50:20 +08:00

Fix cursor incorrectly flashing red after a rewind in replays with Alternate mod active (#35725)

* Fix red cursor with alt mod when rewind

* Change rewind detection in input blocking
This commit is contained in:
Urantij
2025-11-18 15:52:37 +07:00
committed by GitHub
Unverified
parent 19b6761697
commit f0ca079fe6
@@ -67,6 +67,9 @@ namespace osu.Game.Rulesets.Osu.Mods
{
if (LastAcceptedAction != null && nonGameplayPeriods.IsInAny(gameplayClock.CurrentTime))
LastAcceptedAction = null;
if (LastAcceptedAction != null && gameplayClock.IsRewinding)
LastAcceptedAction = null;
}
protected abstract bool CheckValidNewAction(OsuAction action);