From ee2b1574d038608e022b06bb39bcac938be379ad Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Thu, 22 Jan 2026 23:43:02 +0200 Subject: [PATCH] Hide AudioOffset from Lethal Config It is a niche option, and having two sliders next to each other might be overwhelming for players. --- MuzikaGromche/Plugin.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index 09192c5..174bccf 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -2613,7 +2613,9 @@ namespace MuzikaGromche AudioOffset = configFile.Bind("General", "Audio Offset", 0f, new ConfigDescription( "Adjust audio offset (in seconds).\n\nIf you are playing with Bluetooth headphones and experiencing a visual desync, try setting this to about negative 0.2.\n\nIf your video output has high latency (like a long HDMI cable etc.), try positive values instead.", new AcceptableValueRange(-0.5f, 0.5f))); +#if false // too much configurability LethalConfigManager.AddConfigItem(new FloatSliderConfigItem(AudioOffset, requiresRestart: false)); +#endif SkipExplicitTracks = configFile.Bind("General", "Skip Explicit Tracks", false, new ConfigDescription("When choosing tracks at random, skip the ones with Explicit Content/Lyrics."));