mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-11 15:47:55 +00:00
public: allow matching anything in matchpattern
This commit is contained in:
parent
cd46ad19a3
commit
4031f5cb01
@ -954,7 +954,12 @@ skipwhite:
|
|||||||
|
|
||||||
int matchpattern( const char *in, const char *pattern, qboolean caseinsensitive )
|
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
|
// wildcard_least_one: if true * matches 1 or more characters
|
||||||
|
Loading…
Reference in New Issue
Block a user