From 5dd024aab7d8add3a143725b1a21beab946da70e Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 3 Jan 2022 12:46:02 +0900 Subject: [PATCH] Remove outdated settings migration --- osu.Game/Configuration/OsuConfigManager.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/osu.Game/Configuration/OsuConfigManager.cs b/osu.Game/Configuration/OsuConfigManager.cs index 616e749c9b..6efbaa4d36 100644 --- a/osu.Game/Configuration/OsuConfigManager.cs +++ b/osu.Game/Configuration/OsuConfigManager.cs @@ -174,11 +174,6 @@ namespace osu.Game.Configuration if (!int.TryParse(pieces[1], out int monthDay)) return; int combined = (year * 10000) + monthDay; - - if (combined < 20210413) - { - SetValue(OsuSetting.EditorWaveformOpacity, 0.25f); - } } public override TrackedSettings CreateTrackedSettings()