summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick <patrick.exner1@web.de>2022-11-04 21:45:40 +0100
committerPatrick <patrick.exner1@web.de>2022-11-04 21:45:40 +0100
commitf9458f92284fd422ba5716c3177e897e5daea87b (patch)
treebdb94ccade12be8c69ef0f31a3dea0a51763cbc0
parent191c8ed12f624ec97b650b2726fed4e8c4bcf04c (diff)
Improve error message for invalid library feature flags
Fixes https://github.com/godotengine/godot/issues/63227 My version for the error message is: `No suitable library found. The libraries' tags referred to an invalid feature flag. Possible feature flags for your platform: %s`
-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 e1d68d97b5..c5f7d2a047 100644
--- a/editor/plugins/gdextension_export_plugin.h
+++ b/editor/plugins/gdextension_export_plugin.h
@@ -107,7 +107,7 @@ void GDExtensionExportPlugin::_export_file(const String &p_path, const String &p
for (const String &E : p_features) {
tags.append(E);
}
- ERR_FAIL_MSG(vformat("Couldn't export extension: %s. No suitable library found for export flags: %s", p_path, String(", ").join(tags)));
+ 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)));
}
List<String> dependencies;