Merge pull request #95678 from Hilderin/fix-slow-load-on-large-project-v2

Fix slow editor load on large projects (v2)
This commit is contained in:
Rémi Verschelde
2024-09-26 12:45:31 +02:00
10 changed files with 233 additions and 127 deletions

View File

@ -294,7 +294,6 @@ uint64_t FileAccessUnix::_get_modified_time(const String &p_file) {
if (!err) {
return status.st_mtime;
} else {
WARN_PRINT("Failed to get modified time for: " + p_file);
return 0;
}
}