mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 11:24:05 +00:00
Make cpu-id arch detection use our own macro.
This commit is contained in:
parent
d381ec234d
commit
28e0090bd2
|
@ -84,10 +84,10 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dig CPU features with cpuid
|
// Dig CPU features with cpuid
|
||||||
#ifndef X64
|
#ifdef X86_64
|
||||||
//cpuId32(&ecx,&edx);
|
|
||||||
#else
|
|
||||||
cpuId64(&ecx,&edx);
|
cpuId64(&ecx,&edx);
|
||||||
|
#else
|
||||||
|
cpuId32(&ecx,&edx);
|
||||||
#endif
|
#endif
|
||||||
printf("CPU features enabled: ");
|
printf("CPU features enabled: ");
|
||||||
// EDX
|
// EDX
|
||||||
|
|
Loading…
Reference in a new issue