From de573814c48a94aece6a74e856c3ca210c3f7d1f Mon Sep 17 00:00:00 2001 From: yellowtd <ren_amon@hotmail.com> Date: Thu, 7 Aug 2014 05:37:49 -0400 Subject: [PATCH] shortfix --- 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 f77cdee83e..e4669c0933 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -3790,7 +3790,7 @@ static void Command_Tunes_f(void) tune = mapheaderinfo[gamemap-1]->musicslot; track = mapheaderinfo[gamemap-1]->musicslottrack; } - else if (toupper(tunearg[0]) >= 'A' && toupper(tunearg[0]) <= 'Z') && (strlen(tunearg) < 3)) + else if ((toupper(tunearg[0]) >= 'A' && toupper(tunearg[0]) <= 'Z') && (strlen(tunearg) < 3)) tune = (UINT16)M_MapNumber(tunearg[0], tunearg[1]); else if (fastncmp("mus_",tunearg,4)) //yellowtd: why not just give both tune options? tune = get_mus(tunearg+4); -- GitLab