From ea602827cd36927c8bfd30201f022c227a7cae74 Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 22 Feb 2014 01:26:34 +0000 Subject: [PATCH] Indicate MSVC in build string git-svn-id: https://svn.eduke32.com/eduke32@4339 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/game.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/polymer/eduke32/source/game.c b/polymer/eduke32/source/game.c index 110e24bd7..04324c06b 100644 --- a/polymer/eduke32/source/game.c +++ b/polymer/eduke32/source/game.c @@ -11205,8 +11205,14 @@ int32_t app_main(int32_t argc, const char **argv) #else " (32-bit)" #endif +#if defined (_MSC_VER) || defined(__cplusplus) +#ifdef _MSC_VER + " MSVC" +#endif #ifdef __cplusplus - " C++ build" + " C++" +#endif + " build" #endif "\n", s_buildRev); initprintf("Compiled %s\n", __DATE__ " " __TIME__);