diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-11-01 23:07:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 23:07:21 +0100 |
commit | 29a66f7b04924505d0694a8101eec16ffb8a7c11 (patch) | |
tree | 3e4aa98e24e4dea640f032b9c702be101199ac04 /platform/iphone/export/export_plugin.cpp | |
parent | 5945f43cc8d18976129e7f59003caf3873c90e22 (diff) | |
parent | 665d29c16dd4eafb3c90e7f65835030d8d0b4f43 (diff) |
Merge pull request #54491 from Calinou/project-manager-fix-vulkan-choice
Fix new projects always being created with OpenGL
Diffstat (limited to 'platform/iphone/export/export_plugin.cpp')
-rw-r--r-- | platform/iphone/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/export/export_plugin.cpp b/platform/iphone/export/export_plugin.cpp index 54fb597c62..0559c8130f 100644 --- a/platform/iphone/export/export_plugin.cpp +++ b/platform/iphone/export/export_plugin.cpp @@ -33,7 +33,7 @@ void EditorExportPlatformIOS::get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) { String driver = ProjectSettings::get_singleton()->get("rendering/driver/driver_name"); r_features->push_back("pvrtc"); - if (driver == "Vulkan") { + if (driver == "vulkan") { // FIXME: Review if this is correct. r_features->push_back("etc2"); } |