diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-10 21:56:35 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-10 21:56:35 +0100 |
commit | 17a18fad46d93e45992c26e7c069503df5042bab (patch) | |
tree | efe1521d66cd3513b6664f13899390bca60d6d62 /platform/android/export/export_plugin.cpp | |
parent | 848f93f989641b6b093df428858d21fb20ee21f7 (diff) | |
parent | dce2686e520f5e63797ec2d5bd52005e37c5577f (diff) | |
download | redot-engine-17a18fad46d93e45992c26e7c069503df5042bab.tar.gz |
Merge pull request #84720 from m4gr3d/fix_missing_gdextension_so_files
Remove Android specific abis from the export preset feature list
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index ffdca1e345..842381567c 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -1717,7 +1717,6 @@ void EditorExportPlatformAndroid::get_preset_features(const Ref<EditorExportPres Vector<ABI> abis = get_enabled_abis(p_preset); for (int i = 0; i < abis.size(); ++i) { r_features->push_back(abis[i].arch); - r_features->push_back(abis[i].abi); } } |