mirror of
https://github.com/osukey/osukey.git
synced 2025-05-31 02:17:34 +09:00
Fix StabilityGameClock not being updated
This commit is contained in:
parent
e4710f82ec
commit
ae8bf8cdd4
@ -207,12 +207,16 @@ namespace osu.Game.Rulesets.UI
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void setClock()
|
private void setClock()
|
||||||
|
{
|
||||||
|
if (parentGameplayClock == null)
|
||||||
{
|
{
|
||||||
// in case a parent gameplay clock isn't available, just use the parent clock.
|
// in case a parent gameplay clock isn't available, just use the parent clock.
|
||||||
parentGameplayClock ??= Clock;
|
parentGameplayClock ??= Clock;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
Clock = GameplayClock;
|
Clock = GameplayClock;
|
||||||
ProcessCustomClock = false;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public ReplayInputHandler ReplayInputHandler { get; set; }
|
public ReplayInputHandler ReplayInputHandler { get; set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user