Преглед на файлове

Merge pull request #15330 from sudoio/master

Fixed missing parenthesis
volzhs преди 7 години
родител
ревизия
7555fdc003
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      platform/javascript/export/export.cpp

+ 1 - 1
platform/javascript/export/export.cpp

@@ -277,7 +277,7 @@ Error EditorExportPlatformJavaScript::export_project(const Ref<EditorExportPrese
 		splash.instance();
 		splash.instance();
 		Error err = splash->load(splash_path);
 		Error err = splash->load(splash_path);
 		if (err) {
 		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();
 			splash.unref();
 		}
 		}
 	}
 	}