From 78501dcd0c5ed09d7cd65b7da2d72b39579cb3a3 Mon Sep 17 00:00:00 2001 From: mazmazz Date: Thu, 20 Dec 2018 01:11:07 -0500 Subject: [PATCH 1/2] Comment out stray PK3 blockmap message --- src/p_setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_setup.c b/src/p_setup.c index 93eb7558..2e568800 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -2000,7 +2000,7 @@ static boolean P_LoadRawBlockMap(UINT8 *data, size_t count, const char *lumpname if (!count || count >= 0x20000) return false; - CONS_Printf("Reading blockmap lump for pk3...\n"); + //CONS_Printf("Reading blockmap lump for pk3...\n"); // no need to malloc anything, assume the data is uncompressed for now count /= 2; From 7f8d16d3cd1326a3cc621852f3c62cacee2e32ce Mon Sep 17 00:00:00 2001 From: mazmazz Date: Thu, 20 Dec 2018 02:25:36 -0500 Subject: [PATCH 2/2] Add DEVELOP build flag to version string --- src/d_netcmd.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 8abfb870..bc641726 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -3440,7 +3440,7 @@ static void Command_Version_f(void) #elif defined(__linux__) CONS_Printf("Linux "); #elif defined(MACOSX) - CONS_Printf("macOS" ); + CONS_Printf("macOS "); #elif defined(UNIXCOMMON) CONS_Printf("Unix (Common) "); #else @@ -3465,6 +3465,11 @@ static void Command_Version_f(void) CONS_Printf("\x85" "DEBUG " "\x80"); #endif + // DEVELOP build +#ifdef DEVELOP + CONS_Printf("\x87" "DEVELOP " "\x80"); +#endif + CONS_Printf("\n"); }