From e80d4effa1c2407fc770d106c79d6ec0aea877b8 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Tue, 14 Jan 2025 21:05:00 +0100 Subject: [PATCH] [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 --- src/xenia/kernel/xfile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/kernel/xfile.h b/src/xenia/kernel/xfile.h index 1fea81a81..dedadf142 100644 --- a/src/xenia/kernel/xfile.h +++ b/src/xenia/kernel/xfile.h @@ -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 '|': {