diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-12-16 13:05:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-16 13:05:18 +0100 |
commit | a68d15d509721587c1a38a34a861a0f7ce754eb2 (patch) | |
tree | d5d819b37c444e7533c887f066c2f74478fd3c45 /platform/iphone | |
parent | a9ddc8f7cfa8c2e0a685a9bba3dcd8bc8feae3ab (diff) | |
parent | f89d78a7a474612ec715e5c5da150f97dd716057 (diff) |
Merge pull request #14597 from NathanWarden/linux_extensions
Updated Linux template extensions to match architecture.
Diffstat (limited to 'platform/iphone')
-rw-r--r-- | platform/iphone/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 1833bdf2b3..9ea8d58db0 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -108,7 +108,7 @@ public: virtual String get_os_name() const { return "iOS"; } virtual Ref<Texture> get_logo() const { return logo; } - virtual String get_binary_extension() const { return "ipa"; } + virtual String get_binary_extension(const Ref<EditorExportPreset> &p_preset) const { return "ipa"; } virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0); virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const; |