- Fixed version string output for VC++ builds of ZDBSP.

SVN r2087 (trunk)
This commit is contained in:
Randy Heit 2010-01-02 21:39:21 +00:00
parent c512b642a8
commit 050be5fe76

View file

@ -483,23 +483,26 @@ static void ShowVersion ()
"GCC" "GCC"
#if defined(__i386__) #if defined(__i386__)
"-x86 : " "-x86"
#elif defined(__amd64__) #elif defined(__amd64__)
"-amd64 : " "-amd64"
#endif #endif
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
" (VC" "VC"
#if defined(_M_X86) #if defined(_M_IX86)
"-x86 : " "-x86"
#if _M_IX86_FP > 1
"-SSE2"
#endif
#elif defined(_M_X64) #elif defined(_M_X64)
"-x64 : " "-x64"
#endif #endif
#endif #endif
__DATE__ ")\n"); " : " __DATE__ ")\n");
} }
//========================================================================== //==========================================================================