summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-11-23 13:41:35 +0100
committerGitHub <noreply@github.com>2021-11-23 13:41:35 +0100
commitc7007f83d50bdfa040aa6f249ead9000ed0d3aa4 (patch)
treea27c17af9eb9f9bd83ad934d14a8ee673cbc2c87 /modules
parenta8c305acfaf3c394a4c300df1aa99a35fe1344aa (diff)
parent4682f2229376a8e98a521c06ecd157e020f46d88 (diff)
Merge pull request #55243 from KoBeWi/some_random_stuff_idk
Diffstat (limited to 'modules')
-rw-r--r--modules/gdscript/gdscript_analyzer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp
index cd8fd361c5..1ecde53dd0 100644
--- a/modules/gdscript/gdscript_analyzer.cpp
+++ b/modules/gdscript/gdscript_analyzer.cpp
@@ -3001,7 +3001,7 @@ void GDScriptAnalyzer::reduce_preload(GDScriptParser::PreloadNode *p_preload) {
// TODO: Don't load if validating: use completion cache.
p_preload->resource = ResourceLoader::load(p_preload->resolved_path);
if (p_preload->resource.is_null()) {
- push_error(vformat(R"(Could not p_preload resource file "%s".)", p_preload->resolved_path), p_preload->path);
+ push_error(vformat(R"(Could not preload resource file "%s".)", p_preload->resolved_path), p_preload->path);
}
}
}