From 576eb17e1496606498b8a6bef8d9818db1858434 Mon Sep 17 00:00:00 2001 From: scrawach Date: Fri, 6 Feb 2026 01:38:46 +0300 Subject: [PATCH] Fix warnings relating to case mismatch in file path for windows --- drivers/windows/file_access_windows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/windows/file_access_windows.cpp b/drivers/windows/file_access_windows.cpp index 6d305ae395..7330bd6336 100644 --- a/drivers/windows/file_access_windows.cpp +++ b/drivers/windows/file_access_windows.cpp @@ -141,7 +141,7 @@ Error FileAccessWindows::open_internal(const String &p_path, int p_mode_flags) { // platforms), we only check for relative paths, or paths in res:// or user://, // other paths aren't likely to be portable anyway. if (p_mode_flags == READ && (p_path.is_relative_path() || get_access_type() != ACCESS_FILESYSTEM)) { - String base_path = p_path; + String base_path = FileAccess::fix_path(p_path); String working_path; String proper_path;