Updated the version command to include MSVC 10 (_MSC_VER == 1600)

git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3640 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Lance 2010-11-10 05:35:14 +00:00
parent f575777728
commit bcdcda8b9f
1 changed files with 4 additions and 3 deletions

View File

@ -3131,6 +3131,7 @@ void COM_Version_f (void)
else if (_MSC_VER == 1310) { Con_Printf("Visual C++ 2003, version 7.1\n"); }
else if (_MSC_VER == 1400) { Con_Printf("Visual C++ 2005, version 8.0\n"); }
else if (_MSC_VER == 1500) { Con_Printf("Visual C++ 2008, version 9.0\n"); }
else if (_MSC_VER == 1600) { Con_Printf("Visual C++ 2010, version 10.0\n"); }
else
{
#ifdef _MSC_BUILD