mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Add function to obtain filesystem type from DirAccess.
Change EditorFileSystem to not use directory modification times on FAT32, fixes #20946
This commit is contained in:
parent
100154a131
commit
6fa632b821
11 changed files with 62 additions and 1 deletions
|
@ -212,6 +212,12 @@ Error DirAccessJAndroid::remove(String p_name) {
|
|||
ERR_FAIL_V(ERR_UNAVAILABLE);
|
||||
}
|
||||
|
||||
String DirAccessJAndroid::get_filesystem_type() const {
|
||||
|
||||
return "APK";
|
||||
}
|
||||
|
||||
|
||||
//FileType get_file_type() const;
|
||||
size_t DirAccessJAndroid::get_space_left() {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue