mirror of
https://github.com/AxioDL/zeus.git
synced 2025-06-14 18:43:33 +00:00
Fix architecture detection macros for Windows
This commit is contained in:
parent
9216f4e97f
commit
bf25b17ea9
@ -30,10 +30,10 @@
|
|||||||
namespace zeus
|
namespace zeus
|
||||||
{
|
{
|
||||||
|
|
||||||
#if MSVC
|
#if _MSC_VER
|
||||||
#if defined(_M_X86)
|
#if defined(_M_IX86)
|
||||||
#define ZEUS_ARCH_X86 1
|
#define ZEUS_ARCH_X86 1
|
||||||
#elif defined(_M_X86_64)
|
#elif defined(_M_X64)
|
||||||
#define ZEUS_ARCH_X86_64 1
|
#define ZEUS_ARCH_X86_64 1
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user