diff options
author | Rafał Mikrut <mikrutrafal@protonmail.com> | 2022-07-31 13:15:02 +0200 |
---|---|---|
committer | Rafał Mikrut <mikrutrafal@protonmail.com> | 2022-08-03 22:28:51 +0200 |
commit | 3d3fce0d3c2139a26195e1d4f014ed4a32f9686d (patch) | |
tree | c15bcaf877e8d08c940d2242c56c8b7851d5a5b0 /core/io | |
parent | 66d1bb84c380910a50e3176124da5c8821e93097 (diff) |
Various converter enhancements and bugfixes
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/dir_access.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/dir_access.h b/core/io/dir_access.h index 22017efaa3..d5318dfb45 100644 --- a/core/io/dir_access.h +++ b/core/io/dir_access.h @@ -108,6 +108,8 @@ public: if (da->remove(p_path) != OK) { ERR_FAIL_MSG("Cannot remove file or directory: " + p_path); } + } else { + ERR_FAIL_MSG("Cannot remove non-existent file or directory: " + p_path); } } |