[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:
Gliniak 2025-01-14 21:05:00 +01:00
parent 57da74814b
commit e80d4effa1
1 changed files with 2 additions and 2 deletions

View File

@ -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 '|': {