Browse Source

engine: fix typo, #488

pull/2/head
Alibek Omarov 3 years ago
parent
commit
94959110f6
  1. 2
      engine/common/con_utils.c

2
engine/common/con_utils.c

@ -876,7 +876,7 @@ qboolean Cmd_CheckMapsList_R( qboolean fRefresh, qboolean onlyingamedir ) @@ -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 );

Loading…
Cancel
Save