Implement get_filesystem_type on macOS and Linux.

This commit is contained in:
Pāvels Nadtočajevs 2025-05-14 11:35:25 +03:00
parent 45fc515ae3
commit d609cf62a0
No known key found for this signature in database
GPG key ID: 8413210218EF35D2
7 changed files with 184 additions and 2 deletions

View file

@ -362,7 +362,7 @@ String DirAccessWindows::get_filesystem_type() const {
&dwFileSystemFlags,
szFileSystemName,
sizeof(szFileSystemName)) == TRUE) {
return String::utf16((const char16_t *)szFileSystemName);
return String::utf16((const char16_t *)szFileSystemName).to_upper();
}
ERR_FAIL_V("");