From 1e029d05a835e5c61238a98db7cf460efe030a9f Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Wed, 17 May 2017 16:10:49 +0300 Subject: [PATCH] Added bindable to adjust playback speed --- osu.Game/Configuration/OsuConfigManager.cs | 2 ++ osu.Game/Screens/Play/Options/PlaybackOptions.cs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/osu.Game/Configuration/OsuConfigManager.cs b/osu.Game/Configuration/OsuConfigManager.cs index eff41117f7..c3a7870d5a 100644 --- a/osu.Game/Configuration/OsuConfigManager.cs +++ b/osu.Game/Configuration/OsuConfigManager.cs @@ -70,6 +70,7 @@ namespace osu.Game.Configuration Set(OsuSetting.KeyOverlay, false); Set(OsuSetting.FloatingComments, false); + Set(OsuSetting.PlaybackSpeed, 1.0, 0.5f, 2); // Update @@ -91,6 +92,7 @@ namespace osu.Game.Configuration DimLevel, KeyOverlay, FloatingComments, + PlaybackSpeed, ShowInterface, MouseDisableButtons, MouseDisableWheel, diff --git a/osu.Game/Screens/Play/Options/PlaybackOptions.cs b/osu.Game/Screens/Play/Options/PlaybackOptions.cs index 2a5551982d..72e70734c6 100644 --- a/osu.Game/Screens/Play/Options/PlaybackOptions.cs +++ b/osu.Game/Screens/Play/Options/PlaybackOptions.cs @@ -17,7 +17,7 @@ namespace osu.Game.Screens.Play.Options Add(new SettingsSlider { LabelText = "Playback speed", - Bindable = config.GetBindable(OsuSetting.DimLevel), + Bindable = config.GetBindable(OsuSetting.PlaybackSpeed), }); } }