From d47990c056fda12f5908f759ab05fa6eeb6fed06 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 4 Jun 2024 22:31:54 +0200 Subject: [PATCH] Limits --- app/Ryzen/RyzenControl.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Ryzen/RyzenControl.cs b/app/Ryzen/RyzenControl.cs index 825abf0b..467c3629 100644 --- a/app/Ryzen/RyzenControl.cs +++ b/app/Ryzen/RyzenControl.cs @@ -21,8 +21,8 @@ namespace Ryzen public static int MinTemp => AppConfig.Get("min_temp", 75); public const int MaxTemp = 98; - public static int MinSkin => 30; - public const int MaxSkin = 90; + public static int MinSkin => 25; + public const int MaxSkin = 46; public static int FAMID { get; protected set; }