diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-19 09:58:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-19 09:58:06 +0200 |
commit | 1f91c2908e7c551c20dc00d88212e0aaad44f4cf (patch) | |
tree | 127cd16898be268b3a7379e5208c7c6a99783b99 /platform/iphone/export/export.cpp | |
parent | d4c73ea2b379835e75e02b78073547960cf03a74 (diff) | |
parent | 5a2500f580025f474a12f0c6afd5129e23a50b14 (diff) |
Merge pull request #9698 from GodotExplorer/pr-fix-config
Fix errors with global config names no more sorrys please
Diffstat (limited to 'platform/iphone/export/export.cpp')
-rw-r--r-- | platform/iphone/export/export.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 0960ec8791..9cd3ec64cf 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -175,8 +175,8 @@ Error EditorExportPlatformIOS::export_project(const Ref<EditorExportPreset> &p_p String pkg_name; if (p_preset->get("application/name") != "") pkg_name = p_preset->get("application/name"); // app_name - else if (String(GlobalConfig::get_singleton()->get("application/name")) != "") - pkg_name = String(GlobalConfig::get_singleton()->get("application/name")); + else if (String(GlobalConfig::get_singleton()->get("application/config/name")) != "") + pkg_name = String(GlobalConfig::get_singleton()->get("application/config/name")); else pkg_name = "Unnamed"; |