1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-09 02:23:40 +08:00

Merge pull request #10796 from smoogipoo/fix-incorrect-framestability-value

Fix frame stable playback not being set correctly
This commit is contained in:
Dean Herbert
2020-11-11 19:54:45 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -77,7 +77,7 @@ namespace osu.Game.Rulesets.UI
get => frameStablePlayback;
set
{
frameStablePlayback = false;
frameStablePlayback = value;
if (frameStabilityContainer != null)
frameStabilityContainer.FrameStablePlayback = value;
}