mirror of https://github.com/AxioDL/zeus.git
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…
Reference in New Issue