aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_export.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-05-02 11:32:48 +0200
committerGitHub2017-05-02 11:32:48 +0200
commitacaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d (patch)
tree9c51789ed5f03364c8714bbcbb0d5be35ffbfeb9 /editor/editor_export.cpp
parent8e64b27585c416095fbfae0f8c7aca618519e43b (diff)
parent7ce8342ac5c0e0a302559d3ef561ffd9dc74ff2c (diff)
downloadgodot-acaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d.tar.gz
godot-acaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d.tar.zst
godot-acaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d.zip
Merge pull request #8610 from akien-mga/project-file-extension
Rename project file to "project.godot"
Diffstat (limited to '')
-rw-r--r--editor/editor_export.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp
index b719e4a48..4796640a3 100644
--- a/editor/editor_export.cpp
+++ b/editor/editor_export.cpp
@@ -1381,8 +1381,8 @@ Vector<StringName> EditorExportPlatform::get_dependencies(bool p_bundles) const
Set<StringName> exported;
- if (FileAccess::exists("res://godot.cfg"))
- exported.insert("res://godot.cfg");
+ if (FileAccess::exists("res://project.godot"))
+ exported.insert("res://project.godot");
if (EditorImportExport::get_singleton()->get_export_filter()!=EditorImportExport::EXPORT_SELECTED) {
@@ -1978,7 +1978,7 @@ Error EditorExportPlatform::export_project_files(EditorExportSaveFunction p_func
}
- StringName engine_cfg="res://godot.cfg";
+ StringName engine_cfg="res://project.godot";
StringName boot_splash;
{
String splash=GlobalConfig::get_singleton()->get("application/boot_splash"); //avoid splash from being converted
@@ -2032,7 +2032,7 @@ Error EditorExportPlatform::export_project_files(EditorExportSaveFunction p_func
{
- //make binary godot.cfg config
+ //make binary project.godot config
Map<String,Variant> custom;