1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-21 14:57:09 +00:00

Clean up some bad words from code comments

(cherry picked from commit d35e486228)
This commit is contained in:
Artem Varaksa
2018-02-17 16:00:39 +03:00
committed by Hein-Pieter van Braam
parent b5f8c1a53b
commit eacd66e784
14 changed files with 13 additions and 23 deletions

View File

@@ -296,7 +296,7 @@ Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, bo
Vector<char *> args;
for (int i = 0; i < cs.size(); i++)
args.push_back((char *)cs[i].get_data()); // shitty C cast
args.push_back((char *)cs[i].get_data());
args.push_back(0);
execvp(p_path.utf8().get_data(), &args[0]);