diff options
author | XiaoLongHan <kpkhxlgy0@163.com> | 2019-04-27 22:50:26 +0800 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-05-24 12:49:37 +0200 |
commit | 9d309096c9999b7c3da02781e4a6adda5933dbb3 (patch) | |
tree | bee445266f1b56e4dc9e15f866e503ca90ca6cc6 /editor/editor_file_system.h | |
parent | eaff86f8bdcafa9fcd3a1d14ce916c06490a4c2e (diff) | |
download | redot-engine-9d309096c9999b7c3da02781e4a6adda5933dbb3.tar.gz |
fix file system not refresh on exFAT
Diffstat (limited to 'editor/editor_file_system.h')
-rw-r--r-- | editor/editor_file_system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_file_system.h b/editor/editor_file_system.h index 8943706202..72d9489f21 100644 --- a/editor/editor_file_system.h +++ b/editor/editor_file_system.h @@ -237,7 +237,7 @@ class EditorFileSystem : public Node { static Error _resource_import(const String &p_path); - bool using_fat_32; //workaround for projects in FAT32 filesystem (pendrives, most of the time) + bool using_fat32_or_exfat; // Workaround for projects in FAT32 or exFAT filesystem (pendrives, most of the time) void _find_group_files(EditorFileSystemDirectory *efd, Map<String, Vector<String> > &group_files, Set<String> &groups_to_reimport); |