From 6f7409803234f5cf77a188b2ffb3d1eed1b84001 Mon Sep 17 00:00:00 2001 From: Sam Gateau Date: Tue, 28 May 2019 00:26:30 -0700 Subject: [PATCH] Fixing the getCPUIDEX --- libraries/shared/src/CPUIdent.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/shared/src/CPUIdent.cpp b/libraries/shared/src/CPUIdent.cpp index 81a2a8a869..6211e75bf1 100644 --- a/libraries/shared/src/CPUIdent.cpp +++ b/libraries/shared/src/CPUIdent.cpp @@ -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