Fixed type inconsistency

Former-commit-id: a809c19cc4ad496c4f191ef3f9238ea2576ecbb4
This commit is contained in:
Lynix 2012-12-13 17:07:30 +01:00
parent 68c6aa664a
commit 5c3be23a21
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
class NzHardwareInfoImpl class NzHardwareInfoImpl
{ {
public: public:
static void Cpuid(unsigned int code, nzUInt32 result[4]); static void Cpuid(nzUInt32 code, nzUInt32 result[4]);
static unsigned int GetProcessorCount(); static unsigned int GetProcessorCount();
static bool IsCpuidSupported(); static bool IsCpuidSupported();
}; };