summaryrefslogtreecommitdiff
path: root/editor/plugins
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-12-07 13:28:02 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-12-07 13:28:02 +0100
commit829d49b0110edc7bf283c7cca30cddb967bccb70 (patch)
treee6839db32548d7b69185be30d3e8caac09636e23 /editor/plugins
parentc92e70e711bddb33412e2af610441a5ab8c1bc84 (diff)
parent2b11fe1d63d6d1ea1243214d39276a0f895f17f7 (diff)
Merge pull request #69719 from groud/fix_gdextension_bad_vformat_error
Fix a wrong error formatting in gdextension export plugin
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/gdextension_export_plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/gdextension_export_plugin.h b/editor/plugins/gdextension_export_plugin.h
index d62691c76d..586cd2bd59 100644
--- a/editor/plugins/gdextension_export_plugin.h
+++ b/editor/plugins/gdextension_export_plugin.h
@@ -85,7 +85,7 @@ void GDExtensionExportPlugin::_export_file(const String &p_path, const String &p
for (const String &E : p_features) {
features_vector.append(E);
}
- ERR_FAIL_MSG(vformat("No suitable library found. The libraries' tags referred to an invalid feature flag. Possible feature flags for your platform: %s", p_path, String(", ").join(tags)));
+ ERR_FAIL_MSG(vformat("No suitable library found for GDExtension: %s. Possible feature flags for your platform: %s", p_path, String(", ").join(features_vector)));
}
List<String> dependencies;