Style: Apply clang-tidy's modernize-use-bool-literals

This commit is contained in:
Rémi Verschelde 2021-04-05 13:16:16 +02:00
parent 33b8f1448e
commit 0f0c0e5933
No known key found for this signature in database
GPG key ID: C3336907360768E1
6 changed files with 7 additions and 7 deletions

View file

@ -1688,7 +1688,7 @@ Node *EditorSceneImporterCollada::import_scene(const String &p_path, uint32_t p_
state.use_mesh_builtin_materials = true;
state.bake_fps = p_bake_fps;
Error err = state.load(p_path, flags, p_flags & EditorSceneImporter::IMPORT_GENERATE_TANGENT_ARRAYS, 0);
Error err = state.load(p_path, flags, p_flags & EditorSceneImporter::IMPORT_GENERATE_TANGENT_ARRAYS, false);
if (r_err) {
*r_err = err;