You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Fix various typos with codespell
And ignore some false positives introduced by recent versions of codespell.
This commit is contained in:
@@ -1011,19 +1011,19 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
} else if (I->get() == "--delta-smoothing") {
|
||||
if (I->next()) {
|
||||
String string = I->next()->get();
|
||||
bool recognised = false;
|
||||
bool recognized = false;
|
||||
if (string == "enable") {
|
||||
OS::get_singleton()->set_delta_smoothing(true);
|
||||
delta_smoothing_override = true;
|
||||
recognised = true;
|
||||
recognized = true;
|
||||
}
|
||||
if (string == "disable") {
|
||||
OS::get_singleton()->set_delta_smoothing(false);
|
||||
delta_smoothing_override = false;
|
||||
recognised = true;
|
||||
recognized = true;
|
||||
}
|
||||
if (!recognised) {
|
||||
OS::get_singleton()->print("Delta-smoothing argument not recognised, aborting.\n");
|
||||
if (!recognized) {
|
||||
OS::get_singleton()->print("Delta-smoothing argument not recognized, aborting.\n");
|
||||
goto error;
|
||||
}
|
||||
N = I->next()->next();
|
||||
|
||||
Reference in New Issue
Block a user