UI tweaks for Ally

This commit is contained in:
Serge
2024-01-14 21:29:24 +01:00
parent 83fed695e4
commit 384a70c51c
3 changed files with 39 additions and 14 deletions

View File

@@ -513,7 +513,7 @@ public class AsusACPI
for (int i = 0; i < 8; i++)
{
if (curve[i] == old) curve[i]++; // preventing 2 points in same spot from default asus profiles
if (curve[i] <= old) curve[i] = (byte)Math.Min(100, old + 6); // preventing 2 points in same spot from default asus profiles
points[curve[i]] = curve[i + 8];
old = curve[i];
}