diff options
author | XhmikosR <xhmikosr@users.sourceforge.net> | 2014-05-16 18:32:00 +0300 |
---|---|---|
committer | XhmikosR <xhmikosr@users.sourceforge.net> | 2014-05-16 18:40:37 +0300 |
commit | 929efcc719ffeb027949d1f4e1e69babbdbdd1e4 (patch) | |
tree | 3bf3f8161b5d47de9c424900a6a50e6293ea8f26 | |
parent | 775757a893135346d6940f36e125ca8da24b0b42 (diff) | |
download | notepad2-mod-929efcc719ffeb027949d1f4e1e69babbdbdd1e4.zip notepad2-mod-929efcc719ffeb027949d1f4e1e69babbdbdd1e4.tar.gz notepad2-mod-929efcc719ffeb027949d1f4e1e69babbdbdd1e4.tar.bz2 |
Add VS2013 Update 2 number.
-rw-r--r-- | src/Version.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Version.h b/src/Version.h index 16c7730..7bc6daa 100644 --- a/src/Version.h +++ b/src/Version.h @@ -75,10 +75,12 @@ #endif
#elif defined(_MSC_VER)
#if _MSC_VER == 1800
- #if (_MSC_FULL_VER >= 180021005)
- #define VERSION_COMPILER L"MSVC 2013"
+ #if (_MSC_FULL_VER == 180030501)
+ #define VERSION_COMPILER L"MSVC 2013 Update 2"
#elif (_MSC_FULL_VER < 180021005)
#define VERSION_COMPILER L"MSVC 2013 Preview/Beta/RC"
+ #else
+ #define VERSION_COMPILER L"MSVC 2013"
#endif
#elif _MSC_VER == 1700
#if (_MSC_FULL_VER == 170061030)
|