1
0
mirror of https://github.com/godotengine/godot synced 2024-07-08 16:30:44 +00:00

improved error msg for gdscript load_source_code

This commit is contained in:
ShimmyShaman 2022-04-22 16:10:48 +12:00
parent f4b0c7a1ea
commit b3922a42e9

View File

@ -1032,7 +1032,13 @@ Error GDScript::load_source_code(const String &p_path) {
Error err;
Ref<FileAccess> f = FileAccess::open(p_path, FileAccess::READ, &err);
if (err) {
ERR_FAIL_COND_V(err, err);
const char *err_name;
if (err < 0 || err >= ERR_MAX) {
err_name = "(invalid error code)";
} else {
err_name = error_names[err];
}
ERR_FAIL_COND_V_MSG(err, err, "Attempt to open script '" + p_path + "' resulted in error '" + err_name + "'.");
}
uint64_t len = f->get_length();