Fix warnings relating to case mismatch in file path for windows
This commit is contained in:
parent
2487a297b2
commit
576eb17e14
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue