diff --git a/app/AsusACPI.cs b/app/AsusACPI.cs index 2b95bec0..e5bde3e5 100644 --- a/app/AsusACPI.cs +++ b/app/AsusACPI.cs @@ -571,7 +571,6 @@ public class AsusACPI public bool IsXGConnected() { - //return true; return DeviceGet(GPUXGConnected) == 1; } diff --git a/app/Settings.cs b/app/Settings.cs index 1f02ad2d..85320929 100644 --- a/app/Settings.cs +++ b/app/Settings.cs @@ -1327,7 +1327,12 @@ namespace GHelper if (AppConfig.IsAlly()) { tableGPU.Visible = false; - if (Program.acpi.IsXGConnected()) tableAMD.Controls.Add(buttonXGM, 1, 0); + labelGPU.Text = "GPU"; + if (Program.acpi.IsXGConnected()) + { + tableAMD.Controls.Add(buttonXGM, 1, 0); + VisualizeXGM(); + } return; }