Skip to content

Commit e80d4ef

Browse files
committed
[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
1 parent 57da748 commit e80d4ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xenia/kernel/xfile.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ static bool IsValidPath(const std::string_view s, bool is_pattern) {
9898
case '+':
9999
case ',':
100100
// case ':':
101-
case ';':
101+
// case ';':
102102
case '<':
103-
case '=':
103+
// case '=':
104104
case '>':
105105
// case '?':
106106
case '|': {

0 commit comments

Comments
 (0)