You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
improved error msg for gdscript load_source_code
This commit is contained in:
@@ -1032,7 +1032,13 @@ Error GDScript::load_source_code(const String &p_path) {
|
|||||||
Error err;
|
Error err;
|
||||||
Ref<FileAccess> f = FileAccess::open(p_path, FileAccess::READ, &err);
|
Ref<FileAccess> f = FileAccess::open(p_path, FileAccess::READ, &err);
|
||||||
if (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();
|
uint64_t len = f->get_length();
|
||||||
|
|||||||
Reference in New Issue
Block a user