diff options
author | rune-scape <spartacrafter@gmail.com> | 2024-06-18 00:49:26 -0700 |
---|---|---|
committer | rune-scape <spartacrafter@gmail.com> | 2024-06-18 00:50:56 -0700 |
commit | 97105f236dbceb46eb803959880d590303625f7f (patch) | |
tree | eaff57430bb9ac7560dc57fc0d3da0dd9137e353 /editor/editor_autoload_settings.cpp | |
parent | 8c70c18132441d11a88dd96b462d89d8eba4c2f5 (diff) | |
download | redot-engine-97105f236dbceb46eb803959880d590303625f7f.tar.gz |
Fix incorrect autoload path in error
Diffstat (limited to 'editor/editor_autoload_settings.cpp')
-rw-r--r-- | editor/editor_autoload_settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_autoload_settings.cpp b/editor/editor_autoload_settings.cpp index a5c4831db7..13f2fd047c 100644 --- a/editor/editor_autoload_settings.cpp +++ b/editor/editor_autoload_settings.cpp @@ -753,12 +753,12 @@ bool EditorAutoloadSettings::autoload_add(const String &p_name, const String &p_ } if (!FileAccess::exists(p_path)) { - EditorNode::get_singleton()->show_warning(TTR("Can't add Autoload:") + "\n" + vformat(TTR("%s is an invalid path. File does not exist."), path)); + EditorNode::get_singleton()->show_warning(TTR("Can't add Autoload:") + "\n" + vformat(TTR("%s is an invalid path. File does not exist."), p_path)); return false; } if (!p_path.begins_with("res://")) { - EditorNode::get_singleton()->show_warning(TTR("Can't add Autoload:") + "\n" + vformat(TTR("%s is an invalid path. Not in resource path (res://)."), path)); + EditorNode::get_singleton()->show_warning(TTR("Can't add Autoload:") + "\n" + vformat(TTR("%s is an invalid path. Not in resource path (res://)."), p_path)); return false; } |