diff --git a/src/os/win32/cpu.c b/src/os/win32/cpu.c index 896bf26d..eb387461 100644 --- a/src/os/win32/cpu.c +++ b/src/os/win32/cpu.c @@ -99,6 +99,10 @@ static unsigned int HTSupported(void) // Genuine Intel with hyper-Threading technology return Regedx & HT_BIT; } + else { + // Assume AMD + return Regedx & HT_BIT; + } } return 0; // Not genuine Intel processor