diff --git a/app/AutoTDP/AutoTDPGameProfileUI.cs b/app/AutoTDP/AutoTDPGameProfileUI.cs index 95f96677..9f436963 100644 --- a/app/AutoTDP/AutoTDPGameProfileUI.cs +++ b/app/AutoTDP/AutoTDPGameProfileUI.cs @@ -57,7 +57,7 @@ namespace GHelper.AutoTDP private void SliderMinTDP_ValueChanged(object? sender, EventArgs e) { labelMinTDP.Text = sliderMinTDP.Value + "W"; - if (sliderMaxTDP.Value > sliderMinTDP.Value) + if (sliderMaxTDP.Value < sliderMinTDP.Value) { sliderMaxTDP.Value = sliderMinTDP.Value; }