Fixing the getCPUIDEX

This commit is contained in:
Sam Gateau 2019-05-28 00:26:30 -07:00
parent 99f8b61727
commit 6f74098032

View file

@ -34,7 +34,7 @@ void getCPUID(int32_t* p, int32_t ax) {
);
}
void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) {
getCPUID(p, ax, ecx);
getCPUID(p, ax);
}
#elif defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
@ -49,7 +49,7 @@ void getCPUID(int32_t* p, int32_t ax) {
);
}
void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) {
getCPUID(p, ax, ecx);
getCPUID(p, ax);
}
#else
@ -59,7 +59,7 @@ void getCPUID(int32_t* p, int32_t ax) {
}
}
void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) {
getCPUID(p, ax, ecx);
getCPUID(p, ax);
}
#endif