diff --git a/src/d_netcmd.c b/src/d_netcmd.c
index 8abfb8709e140e6bf4f7441bc89b15b66c8143d9..bc6417268f44cb5d45be9e2f50922b2f213b87fd 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");
 }
 
diff --git a/src/p_setup.c b/src/p_setup.c
index 4d9233a24820a0bae3bf25018b339f1d918e55d7..05c7249458f788e01da158f7dac0d6f9ff5fb96e 100644
--- a/src/p_setup.c
+++ b/src/p_setup.c
@@ -2002,7 +2002,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;