aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_export.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2018-02-24 01:20:50 +0100
committerGitHub2018-02-24 01:20:50 +0100
commited0d1a440474d862bca9d05645f46fda8d4c43b4 (patch)
tree34c7229b46c05fed059617d23432471fc1ca352d /editor/editor_export.cpp
parent0712acec1c21b5683f4cfe292bb82f7d1d37cae0 (diff)
parent23ebae01dc7e3df9c842ca7d017f7b233837721d (diff)
downloadgodot-ed0d1a440474d862bca9d05645f46fda8d4c43b4.tar.gz
godot-ed0d1a440474d862bca9d05645f46fda8d4c43b4.tar.zst
godot-ed0d1a440474d862bca9d05645f46fda8d4c43b4.zip
Merge pull request #16957 from akien-mga/version-macros
Refactor version macros and fix related bugs
Diffstat (limited to 'editor/editor_export.cpp')
-rw-r--r--editor/editor_export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp
index badcfc002..da4bbf9b7 100644
--- a/editor/editor_export.cpp
+++ b/editor/editor_export.cpp
@@ -335,7 +335,7 @@ Error EditorExportPlatform::_save_zip_file(void *p_userdata, const String &p_pat
String EditorExportPlatform::find_export_template(String template_file_name, String *err) const {
- String current_version = itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + VERSION_MODULE_CONFIG;
+ String current_version = VERSION_FULL_CONFIG;
String template_path = EditorSettings::get_singleton()->get_templates_dir().plus_file(current_version).plus_file(template_file_name);
if (FileAccess::exists(template_path)) {