diff options
author | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-08-16 21:55:03 -0400 |
---|---|---|
committer | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-09-25 17:36:39 -0400 |
commit | 21f7c8a25f23c40541925c95d7d25f52f81c9811 (patch) | |
tree | 6f61a402aecdbabaab27ab9a3ae97e058f032aa3 /drivers/unix | |
parent | 2be730a05b7ff221b89c967981f7caee6e164ef0 (diff) | |
download | redot-engine-21f7c8a25f23c40541925c95d7d25f52f81c9811.tar.gz |
Fix slow editor load on large projects (v2)
Diffstat (limited to 'drivers/unix')
-rw-r--r-- | drivers/unix/file_access_unix.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/unix/file_access_unix.cpp b/drivers/unix/file_access_unix.cpp index 32f2d7dd79..3d584341ed 100644 --- a/drivers/unix/file_access_unix.cpp +++ b/drivers/unix/file_access_unix.cpp @@ -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; } } |