mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 22:27:13 +02:00
fix typo
This commit is contained in:
parent
a712222370
commit
aef770fcba
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ static bool cpuSupportsAVX() {
|
|||
if (__get_cpuid(0x1, &eax, &ebx, &ecx, &edx) && ((ecx & mask) == mask)) {
|
||||
|
||||
__asm__("xgetbv" : "=a"(eax), "=d"(edx) : "c"(0));
|
||||
if (eax & 0x6) == 0x6) {
|
||||
if ((eax & 0x6) == 0x6) {
|
||||
result = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue