diff options
| author | J08nY <johny@neuromancer.sk> | 2017-04-22 01:15:42 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-05-05 22:39:04 +0200 |
| commit | 243f05920042b61b19d032d297d28bff73a760a2 (patch) | |
| tree | dd7f52df8bfa0eaefdfb840ff20d874b5cc6aacf /editor/editor_export.h | |
| parent | 6034eae95ebd0b9c82b4ae33353938dde6732618 (diff) | |
| download | redot-engine-243f05920042b61b19d032d297d28bff73a760a2.tar.gz | |
Fix template loading
Diffstat (limited to 'editor/editor_export.h')
| -rw-r--r-- | editor/editor_export.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/editor_export.h b/editor/editor_export.h index a78762ad80..740f05174b 100644 --- a/editor/editor_export.h +++ b/editor/editor_export.h @@ -154,7 +154,8 @@ private: protected: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) = 0; - String find_export_template(String template_file_name) const; + bool exists_export_template(String template_file_name, String *err) const; + String find_export_template(String template_file_name, String *err = NULL) const; void gen_export_flags(Vector<String> &r_flags, int p_flags); public: @@ -258,6 +259,8 @@ class EditorExportPlatformPC : public EditorExportPlatform { String debug_file_32; String debug_file_64; + bool use64; + public: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features); |
