1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +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
commit ef5e3d5ab8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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