From a83b42c26310e836188c2b11c0e36f3c01432d4e Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Mon, 5 Aug 2024 23:27:27 +0200 Subject: [PATCH] Improved ROG Ally X detection https://github.com/seerge/g-helper/discussions/2925 --- app/AsusACPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AsusACPI.cs b/app/AsusACPI.cs index 8f99d0f5..804d5388 100644 --- a/app/AsusACPI.cs +++ b/app/AsusACPI.cs @@ -644,7 +644,7 @@ public class AsusACPI public bool IsAllAmdPPT() { - if (_allAMD is null) _allAMD = DeviceGet(PPT_CPUB0) >= 0 && DeviceGet(PPT_GPUC0) < 0; + if (_allAMD is null) _allAMD = DeviceGet(PPT_CPUB0) >= 0 && DeviceGet(PPT_GPUC0) < 0 && !AppConfig.IsAlly(); return (bool)_allAMD; }