diff options
author | Nathan Warden <nathan@nathanwarden.com> | 2017-12-12 16:09:48 -0500 |
---|---|---|
committer | Nathan Warden <nathan@nathanwarden.com> | 2017-12-12 16:09:48 -0500 |
commit | f89d78a7a474612ec715e5c5da150f97dd716057 (patch) | |
tree | a233b768e7a3e291be5a401f506542ddfb957c99 /platform/osx/export/export.cpp | |
parent | 1401b07d328101e11bfd11ad390ace9eff059ee8 (diff) |
Updated Linux template extensions to match architecture.
Diffstat (limited to 'platform/osx/export/export.cpp')
-rw-r--r-- | platform/osx/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/export/export.cpp b/platform/osx/export/export.cpp index d3b763b42e..8a09aa634e 100644 --- a/platform/osx/export/export.cpp +++ b/platform/osx/export/export.cpp @@ -74,7 +74,7 @@ public: virtual String get_os_name() const { return "OSX"; } virtual Ref<Texture> get_logo() const { return logo; } - virtual String get_binary_extension() const { return use_dmg() ? "dmg" : "zip"; } + virtual String get_binary_extension(const Ref<EditorExportPreset> &p_preset) const { return use_dmg() ? "dmg" : "zip"; } 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; |