mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:42:58 +02:00
Fixing the getCPUIDEX
This commit is contained in:
parent
99f8b61727
commit
6f74098032
1 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ void getCPUID(int32_t* p, int32_t ax) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) {
|
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)
|
#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) {
|
void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) {
|
||||||
getCPUID(p, ax, ecx);
|
getCPUID(p, ax);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
@ -59,7 +59,7 @@ void getCPUID(int32_t* p, int32_t ax) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) {
|
void getCPUIDEX(int32_t* p, int32_t ax, int32_t ecx) {
|
||||||
getCPUID(p, ax, ecx);
|
getCPUID(p, ax);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue