mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +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
|
||||
#ifndef X64
|
||||
//cpuId32(&ecx,&edx);
|
||||
#else
|
||||
#ifdef X86_64
|
||||
cpuId64(&ecx,&edx);
|
||||
#else
|
||||
cpuId32(&ecx,&edx);
|
||||
#endif
|
||||
printf("CPU features enabled: ");
|
||||
// EDX
|
||||
|
|
Loading…
Reference in a new issue