You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-18 14:21:41 +00:00
Merge pull request #29815 from NilsIrl/plus_file_1
Replace ` + "/" + ` with `String::file_add()`
This commit is contained in:
@@ -938,7 +938,7 @@ fail:
|
||||
Vector<String> list = extra_config->get_value("init_projects", "list");
|
||||
for (int i = 0; i < list.size(); i++) {
|
||||
|
||||
list.write[i] = exe_path + "/" + list[i];
|
||||
list.write[i] = exe_path.plus_file(list[i]);
|
||||
};
|
||||
extra_config->set_value("init_projects", "list", list);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user