From af5a876be43c1766e14a8093b6d502de404cf88d Mon Sep 17 00:00:00 2001 From: Yamagi Date: Sat, 6 Jul 2024 09:20:04 +0200 Subject: [PATCH] Fix a typo. --- src/client/cl_download.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/cl_download.c b/src/client/cl_download.c index e43923c2..3442c0a8 100644 --- a/src/client/cl_download.c +++ b/src/client/cl_download.c @@ -549,7 +549,7 @@ CL_DownloadFileName(char *dest, int destlen, char *fn) static qboolean CL_DownloadFilter(const char *filename) { - if (FS_LoadFile( (char *) filename, NULL) != -1) + if (FS_LoadFile((char *) filename, NULL) != -1) { /* it exists, no need to download */ return true;