Cleanup: NULL used for boolean

This commit is contained in:
Campbell Barton 2021-01-21 14:04:44 +11:00
parent c60c30205d
commit eaf5ee8981
1 changed files with 1 additions and 1 deletions

View File

@ -773,7 +773,7 @@ bool uv_find_nearest_face_ex(
bool uv_find_nearest_face(Scene *scene, Object *obedit, const float co[2], UvNearestHit *hit)
{
return uv_find_nearest_face_ex(scene, obedit, co, hit, NULL);
return uv_find_nearest_face_ex(scene, obedit, co, hit, false);
}
bool uv_find_nearest_face_multi_ex(Scene *scene,