summaryrefslogtreecommitdiff
path: root/platform/javascript/export
diff options
context:
space:
mode:
authorArtem Varaksa <aymfst@gmail.com>2018-01-04 19:31:35 +0300
committerGitHub <noreply@github.com>2018-01-04 19:31:35 +0300
commit76b5f8b0df2a4dc0117684e6e4f503ac378dde65 (patch)
tree272665a62d8868c9f340cd941451ad9761a647a9 /platform/javascript/export
parentd78335d87f4441c2bbe7e1c11642fbf19ae95c12 (diff)
Fixed missing parenthesis
Diffstat (limited to 'platform/javascript/export')
-rw-r--r--platform/javascript/export/export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/export/export.cpp b/platform/javascript/export/export.cpp
index ab7aa96372..a3514df05c 100644
--- a/platform/javascript/export/export.cpp
+++ b/platform/javascript/export/export.cpp
@@ -277,7 +277,7 @@ Error EditorExportPlatformJavaScript::export_project(const Ref<EditorExportPrese
splash.instance();
Error err = splash->load(splash_path);
if (err) {
- EditorNode::get_singleton()->show_warning(TTR("Could not read boot splash image file:") + "\n" + splash_path + "\n" + TTR("Using default boot splash image.");
+ EditorNode::get_singleton()->show_warning(TTR("Could not read boot splash image file:") + "\n" + splash_path + "\n" + TTR("Using default boot splash image."));
splash.unref();
}
}