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/javascript/export/export.cpp | |
parent | 1401b07d328101e11bfd11ad390ace9eff059ee8 (diff) |
Updated Linux template extensions to match architecture.
Diffstat (limited to 'platform/javascript/export/export.cpp')
-rw-r--r-- | platform/javascript/export/export.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/javascript/export/export.cpp b/platform/javascript/export/export.cpp index 775e9c7ee0..ec5010f330 100644 --- a/platform/javascript/export/export.cpp +++ b/platform/javascript/export/export.cpp @@ -57,7 +57,7 @@ public: virtual Ref<Texture> get_logo() const; virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const; - virtual String get_binary_extension() const; + virtual String get_binary_extension(const Ref<EditorExportPreset> &p_preset) const; virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0); virtual bool poll_devices(); @@ -149,7 +149,7 @@ bool EditorExportPlatformJavaScript::can_export(const Ref<EditorExportPreset> &p return !r_missing_templates; } -String EditorExportPlatformJavaScript::get_binary_extension() const { +String EditorExportPlatformJavaScript::get_binary_extension(const Ref<EditorExportPreset> &p_preset) const { return "html"; } |