mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 16:02:08 +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) {
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue