summaryrefslogtreecommitdiffstats
path: root/platform/uwp
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-03-26 15:33:36 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2021-08-31 20:34:44 +0200
commit2daaf0fdc3e11a32f7f0c7767ae853cedfe29258 (patch)
treee82da01b6452f252ffdcfec3318762da0edbb53d /platform/uwp
parent794606657745e77b89523f19c5e3b69c838f0cb7 (diff)
downloadredot-engine-2daaf0fdc3e11a32f7f0c7767ae853cedfe29258.tar.gz
Make platform feature tag names lowercase
Feature tag names are still case-sensitive, but this makes built-in feature tags more consistent. - `Windows` -> `windows` - `OSX` -> `osx` - `LinuxBSD` -> `linuxbsd` - `Android` -> `android` - `iOS` -> `ios` - `HTML5` -> `html5` - `JavaScript` -> `javascript` - `UWP` -> `uwp`
Diffstat (limited to 'platform/uwp')
-rw-r--r--platform/uwp/export/export_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/export/export_plugin.cpp b/platform/uwp/export/export_plugin.cpp
index 5bd00b1549..a54b85a803 100644
--- a/platform/uwp/export/export_plugin.cpp
+++ b/platform/uwp/export/export_plugin.cpp
@@ -485,7 +485,7 @@ Error EditorExportPlatformUWP::export_project(const Ref<EditorExportPreset> &p_p
void EditorExportPlatformUWP::get_platform_features(List<String> *r_features) {
r_features->push_back("pc");
- r_features->push_back("UWP");
+ r_features->push_back("uwp");
}
void EditorExportPlatformUWP::resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) {