From 2c7fb73432cf29ff40823e37667cf8c57efb454a Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Sat, 27 May 2017 15:10:16 +0100 Subject: [PATCH] Minor optimisation. (I'm picking at this branch! I should stop doing that and work on something else.) --- src/d_netfil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d_netfil.c b/src/d_netfil.c index ffd39eef9..8cbcabc8c 100644 --- a/src/d_netfil.c +++ b/src/d_netfil.c @@ -118,8 +118,8 @@ UINT8 *PutFileNeeded(void) // If it has only music/sound lumps, don't put it in the list if (!wadfiles[i]->important) continue; - else - filestatus = 1; // Importance - not really used any more, holds 1 by default for backwards compat with MS + + filestatus = 1; // Importance - not really used any more, holds 1 by default for backwards compat with MS // Store in the upper four bits if (!cv_downloading.value)