removed some surplus null appends that got typoed in 0e29f7974b

A couple of null appends got typoed to append a '0' character instead.
Removed them here since String already takes care of the null terminator for us.
This commit is contained in:
Ibrahn Sahir
2018-08-07 03:22:50 +01:00
parent 80a8636aa3
commit 62f0dd9d57
3 changed files with 0 additions and 4 deletions

View File

@ -1782,7 +1782,6 @@ ProjectManager::ProjectManager() {
String cp;
cp += 0xA9;
cp += '0';
OS::get_singleton()->set_window_title(VERSION_NAME + String(" - ") + TTR("Project Manager") + " - " + cp + " 2007-2018 Juan Linietsky, Ariel Manzur & Godot Contributors");
HBoxContainer *top_hb = memnew(HBoxContainer);