From 94959110f6f4016069af68a8423cb2df6461630d Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 7 Jun 2021 15:53:20 +0300 Subject: [PATCH] engine: fix typo, #488 --- engine/common/con_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/con_utils.c b/engine/common/con_utils.c index c90d10b1..fbdaf316 100644 --- a/engine/common/con_utils.c +++ b/engine/common/con_utils.c @@ -876,7 +876,7 @@ qboolean Cmd_CheckMapsList_R( qboolean fRefresh, qboolean onlyingamedir ) if( Q_stricmp( COM_FileExtension( t->filenames[i] ), "bsp" )) continue; - if( use_filter && !Q_stristr( t->filenames[i], mpfilter )) + if( use_filter && Q_stristr( t->filenames[i], mpfilter )) continue; f = FS_Open( t->filenames[i], "rb", onlyingamedir );