[Kernel] IsValidPath: Removed ; and = from invalid characters list
Path like: fxprefabs;scale=fx_dropship_02_fade.* is processed as a proper one internally and it expects no file error instead of invalid parameter
This commit is contained in:
parent
57da74814b
commit
e80d4effa1
|
@ -98,9 +98,9 @@ static bool IsValidPath(const std::string_view s, bool is_pattern) {
|
|||
case '+':
|
||||
case ',':
|
||||
// case ':':
|
||||
case ';':
|
||||
// case ';':
|
||||
case '<':
|
||||
case '=':
|
||||
// case '=':
|
||||
case '>':
|
||||
// case '?':
|
||||
case '|': {
|
||||
|
|
Loading…
Reference in New Issue