From eacfe1534287415e3e2e59d358598b8f4120796a Mon Sep 17 00:00:00 2001 From: lordmulder Date: Wed, 14 May 2014 17:12:38 +0200 Subject: [PATCH] Recognize Visual Studio 2013 with Update 2. --- src/global.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/global.cpp b/src/global.cpp index 2a62153..13f2e5c 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -252,8 +252,10 @@ static inline bool _CHECK_FLAG(const int argc, char **argv, const char *flag) #if (_MSC_VER == 1800) #if (_MSC_FULL_VER < 180021005) static const char *g_x264_version_compiler = "MSVC 2013-Beta"; - #elif (_MSC_FULL_VER == 180021005) + #elif (_MSC_FULL_VER < 180030501) static const char *g_x264_version_compiler = "MSVC 2013"; + #elif (_MSC_FULL_VER == 180030501) + static const char *g_x264_version_compiler = "MSVC 2013.2"; #else #error Compiler version is not supported yet! #endif