mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 21:31:04 +00:00
More concise bitness check
This commit is contained in:
parent
1ea2fa447a
commit
c5b349ddc4
1 changed files with 6 additions and 11 deletions
|
@ -3448,17 +3448,12 @@ static void Command_Version_f(void)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Bitness
|
// Bitness
|
||||||
#if defined(_WIN64)
|
if (sizeof(void*) == 4)
|
||||||
CONS_Printf("x64 ");
|
CONS_Printf("32-bit ");
|
||||||
#elif defined(_WIN32)
|
else if (sizeof(void*) == 8)
|
||||||
CONS_Printf("x86 ");
|
CONS_Printf("64-bit ");
|
||||||
#elif defined(NONX86)
|
else // 16-bit? 128-bit?
|
||||||
CONS_Printf("Non-x86 ");
|
|
||||||
#elif defined(LINUX)
|
|
||||||
CONS_Printf("x86 ");
|
|
||||||
#else
|
|
||||||
CONS_Printf("Bits Unknown ");
|
CONS_Printf("Bits Unknown ");
|
||||||
#endif
|
|
||||||
|
|
||||||
// No ASM?
|
// No ASM?
|
||||||
#ifdef NOASM
|
#ifdef NOASM
|
||||||
|
|
Loading…
Reference in a new issue