Correct _MSC_VER definition check

This commit is contained in:
riccardom 2009-03-21 14:09:29 +00:00
parent 8d22c9363c
commit bc0cbc1f2e
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
#ifdef __INTEL_COMPILER
#define DESMUME_COMPILER " (Intel) "
#define DESMUME_COMPILER_DETAIL " (Intel) "
#elif _MSC_VER
#elif defined(_MSC_VER)
#define DESMUME_COMPILER ""
#define DESMUME_COMPILER_DETAIL " msvc " _Py_STRINGIZE(_MSC_VER)
#define _Py_STRINGIZE(X) _Py_STRINGIZE1((X))