P-cores fix

This commit is contained in:
Serge
2024-02-25 19:55:39 +01:00
parent b644402155
commit 6d696c5c77
2 changed files with 4 additions and 2 deletions

View File

@@ -686,7 +686,7 @@ public class AsusACPI
public (int, int) GetCores(bool max = false)
{
int value = Program.acpi.DeviceGet(max ? CORES_MAX : CORES_CPU);
//value = max ? 0x806 : 0x605;
//value = max ? 0x406 : 0x605;
if (value < 0) return (-1, -1);
Logger.WriteLine("Cores" + (max ? "Max" : "") + ": 0x" + value.ToString("X4"));