From 397b2201d052e8989b44ee869ce766efc82cb8db Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sat, 9 May 2026 00:26:25 +0900 Subject: [PATCH] Fix missing uncommitted change --- .../Overlays/Settings/Sections/Graphics/RendererSettings.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs b/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs index f1cec99f38..ec4bba9c98 100644 --- a/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs +++ b/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs @@ -34,9 +34,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics Caption = GraphicsSettingsStrings.Renderer, Current = renderer, Items = host.GetPreferredRenderersForCurrentPlatform().Order() -#pragma warning disable CS0612 // Type or member is obsolete - .Where(t => t != RendererType.Vulkan && t != RendererType.OpenGLLegacy), -#pragma warning restore CS0612 // Type or member is obsolete + .Where(t => t != RendererType.Vulkan), }) { Keywords = new[] { @"compatibility", @"directx" },