1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 21:02:55 +08:00

Fix frame stable playback not being set correctly

This commit is contained in:
smoogipoo 2020-11-11 18:50:38 +09:00
parent 31dcdb4427
commit 90499329bd

View File

@ -77,7 +77,7 @@ namespace osu.Game.Rulesets.UI
get => frameStablePlayback;
set
{
frameStablePlayback = false;
frameStablePlayback = value;
if (frameStabilityContainer != null)
frameStabilityContainer.FrameStablePlayback = value;
}