aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editor/editor_export_godot3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_export_godot3.cpp b/editor/editor_export_godot3.cpp
index f2c0c0b69..e2bdec138 100644
--- a/editor/editor_export_godot3.cpp
+++ b/editor/editor_export_godot3.cpp
@@ -1920,7 +1920,7 @@ void EditorExportGodot3::_save_config(const String &p_path) {
// Write the collected ConfigFile manually - we need to use _get_property_as_text()
// above, so we can't rely on ConfigFile.save() to properly store the raw strings.
- FileAccessRef f = FileAccess::open(p_path.plus_file("godot.cfg"), FileAccess::WRITE);
+ FileAccessRef f = FileAccess::open(p_path.plus_file("project.godot"), FileAccess::WRITE);
List<String> sections;
new_cfg.get_sections(&sections);