diff options
author | Bruno Barbieri <brunorex@gmail.com> | 2014-01-27 04:43:31 -0200 |
---|---|---|
committer | Bruno Barbieri <brunorex@gmail.com> | 2014-01-27 04:43:31 -0200 |
commit | 12518ea65b4408c484bb905e4eeb37826f3530c0 (patch) | |
tree | 8c44aedd44d6ed1c61b7abcd61ade94b6230448a | |
parent | 21d3b7bdbffe4ca0d9e1b986e24efc51493b41c3 (diff) | |
download | notepad2-mod-12518ea65b4408c484bb905e4eeb37826f3530c0.zip notepad2-mod-12518ea65b4408c484bb905e4eeb37826f3530c0.tar.gz notepad2-mod-12518ea65b4408c484bb905e4eeb37826f3530c0.tar.bz2 |
Add check for VS2013 update 1.
The compiler version hasn't changed, so it's necessary to check _MSC_BUILD.
-rw-r--r-- | src/Version.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Version.h b/src/Version.h index 16c7730..45a3737 100644 --- a/src/Version.h +++ b/src/Version.h @@ -76,7 +76,11 @@ #elif defined(_MSC_VER)
#if _MSC_VER == 1800
#if (_MSC_FULL_VER >= 180021005)
- #define VERSION_COMPILER L"MSVC 2013"
+ #if (_MSC_BUILD > 0)
+ #define VERSION_COMPILER L"MSVC 2013 Update " STRINGIFY(_MSC_BUILD)
+ #else
+ #define VERSION_COMPILER L"MSVC 2013"
+ #endif
#elif (_MSC_FULL_VER < 180021005)
#define VERSION_COMPILER L"MSVC 2013 Preview/Beta/RC"
#endif
|