diff options
| author | Juan Linietsky | 2017-01-14 00:51:09 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-01-14 00:51:09 -0300 |
| commit | d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6 (patch) | |
| tree | f5c92321612fdd5f8967c349898d3475b52bf930 /tools/editor/editor_file_system.cpp | |
| parent | f3b6177ece8a06e52870ed422cbcc67276606e5a (diff) | |
| download | godot-d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6.tar.gz godot-d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6.tar.zst godot-d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6.zip | |
Diffstat (limited to 'tools/editor/editor_file_system.cpp')
| -rw-r--r-- | tools/editor/editor_file_system.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/editor_file_system.cpp b/tools/editor/editor_file_system.cpp index 5fb274f38..03c7b7f74 100644 --- a/tools/editor/editor_file_system.cpp +++ b/tools/editor/editor_file_system.cpp @@ -670,7 +670,7 @@ void EditorFileSystem::_scan_new_dir(EditorFileSystemDirectory *p_dir,DirAccess for (List<String>::Element*E=files.front();E;E=E->next(),idx++) { - String ext = E->get().extension().to_lower(); + String ext = E->get().get_extension().to_lower(); if (!valid_extensions.has(ext)) continue; //invalid @@ -789,7 +789,7 @@ void EditorFileSystem::_scan_fs_changes(EditorFileSystemDirectory *p_dir,const S } else { - String ext = f.extension().to_lower(); + String ext = f.get_extension().to_lower(); if (!valid_extensions.has(ext)) continue; //invalid |
