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

Remove unnecessary cast

This commit is contained in:
Dean Herbert 2019-12-09 18:05:14 +09:00
parent eb074b7058
commit d650bfb6d6

View File

@ -245,7 +245,7 @@ namespace osu.Game.Screens.Play
speedAdjustmentsApplied = false;
}
(track as IAdjustableAudioComponent)?.RemoveAdjustment(AdjustableProperty.Frequency, pauseFreqAdjust);
track.RemoveAdjustment(AdjustableProperty.Frequency, pauseFreqAdjust);
}
}
}