diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-06 00:21:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 00:21:24 +0200 |
commit | 10f9f20849d81158476dde809019b00c14d040e2 (patch) | |
tree | 0df0238cb1af1c813063ff928b1fbcb2e37553f8 /core | |
parent | 99aa97949fa808e9a0be71193fb68ec365496c03 (diff) | |
parent | 3d3fce0d3c2139a26195e1d4f014ed4a32f9686d (diff) |
Merge pull request #63887 from qarmin/more_renames
Various converter enhancements and bugfixes
Diffstat (limited to 'core')
-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); } } |