public: allow matching anything in matchpattern

This commit is contained in:
Alibek Omarov 2023-07-05 05:09:15 +03:00
parent cd46ad19a3
commit 4031f5cb01
1 changed files with 6 additions and 1 deletions

View File

@ -954,7 +954,12 @@ skipwhite:
int matchpattern( const char *in, const char *pattern, qboolean caseinsensitive )
{
return matchpattern_with_separator( in, pattern, caseinsensitive, "/\\:", false );
const char *separators = "/\\:";
if( !Q_strcmp( pattern, "*" ))
separators = "";
return matchpattern_with_separator( in, pattern, caseinsensitive, separators, false );
}
// wildcard_least_one: if true * matches 1 or more characters