diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-05-12 10:10:54 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-05-12 10:13:27 +0200 |
commit | c6fbbdf15de5c86e057183a5d138c41558748cab (patch) | |
tree | fd00f895ed8b187b24b2037fc31c48d7bdc5fb6d /main | |
parent | 6731e1f98b60f99cc9a266dee8a92a8e69fda0ca (diff) |
Rename SSL certificate bundle setting to clarify the "overriding" aspect
This closes https://github.com/godotengine/godot-docs/issues/2531.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 65c6fdd397..83c3e190a8 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2011,7 +2011,7 @@ bool Main::start() { if (!project_manager && !editor) { // game // Load SSL Certificates from Project Settings (or builtin). - Crypto::load_default_certificates(GLOBAL_DEF("network/ssl/certificates", "")); + Crypto::load_default_certificates(GLOBAL_DEF("network/ssl/certificate_bundle_override", "")); if (game_path != "") { Node *scene = nullptr; |