From 9aa68f524ee04ddd05a7b906cc171a9d9bab6f4b Mon Sep 17 00:00:00 2001 From: GoldenTails Date: Sat, 6 Jun 2020 04:12:27 -0500 Subject: [PATCH] Adds the branch name into the version command printout when outside of DEVELOP mode. Really just so I don't accidentally join netgames or record replays for vanilla SRB2 in the `next` branch... --- src/d_netcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 84070135a..735fa4d1b 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -3472,7 +3472,7 @@ static void Command_Version_f(void) #ifdef DEVELOP CONS_Printf("Sonic Robo Blast 2 %s-%s (%s %s) ", compbranch, comprevision, compdate, comptime); #else - CONS_Printf("Sonic Robo Blast 2 %s (%s %s %s) ", VERSIONSTRING, compdate, comptime, comprevision); + CONS_Printf("Sonic Robo Blast 2 %s (%s %s %s %s) ", VERSIONSTRING, compdate, comptime, comprevision, compbranch); #endif // Base library