You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Add descriptive error message when trying to access a dir fails
This commit is contained in:
@@ -170,7 +170,7 @@ Error DirAccess::make_dir_recursive(String p_dir) {
|
|||||||
curpath = curpath.plus_file(subdirs[i]);
|
curpath = curpath.plus_file(subdirs[i]);
|
||||||
Error err = make_dir(curpath);
|
Error err = make_dir(curpath);
|
||||||
if (err != OK && err != ERR_ALREADY_EXISTS) {
|
if (err != OK && err != ERR_ALREADY_EXISTS) {
|
||||||
ERR_FAIL_V(err);
|
ERR_FAIL_V_MSG(err, "Could not create directory: " + curpath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user