From 15a020aa7bb8055273cbc2c3a8ab71170cd57381 Mon Sep 17 00:00:00 2001 From: Hijae Song Date: Sat, 20 Apr 2024 00:41:56 +0900 Subject: [PATCH] fix AYANEO SLIDE max cTDP --- HandheldCompanion/Devices/AYANEO/AYANEOSLIDE.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HandheldCompanion/Devices/AYANEO/AYANEOSLIDE.cs b/HandheldCompanion/Devices/AYANEO/AYANEOSLIDE.cs index ef7c0da4d..56b535b64 100644 --- a/HandheldCompanion/Devices/AYANEO/AYANEOSLIDE.cs +++ b/HandheldCompanion/Devices/AYANEO/AYANEOSLIDE.cs @@ -12,11 +12,11 @@ public AYANEOSlide() // https://www.amd.com/en/products/apu/amd-ryzen-7-7840u this.nTDP = new double[] { 15, 15, 20 }; - this.cTDP = new double[] { 3, 54 }; + this.cTDP = new double[] { 3, 28 }; this.GfxClock = new double[] { 100, 2700 }; this.CpuClock = 5100; this.GyrometerAxis = new Vector3(1.0f, 1.0f, -1.0f); this.AccelerometerAxis = new Vector3(-1.0f, 1.0f, -1.0f); } -} \ No newline at end of file +}