Cleanup: format

This commit is contained in:
Lukas Stockner 2023-03-05 19:53:40 +01:00
parent 9139983f94
commit ca4486bfa1
3 changed files with 13 additions and 4 deletions

@ -2677,8 +2677,17 @@ int ED_path_extension_type(const char *path)
if (BLI_path_extension_check(path, ".zip")) {
return FILE_TYPE_ARCHIVE;
}
if (BLI_path_extension_check_n(
path, ".obj", ".mtl", ".3ds", ".fbx", ".glb", ".gltf", ".svg", ".ply", ".stl", nullptr)) {
if (BLI_path_extension_check_n(path,
".obj",
".mtl",
".3ds",
".fbx",
".glb",
".gltf",
".svg",
".ply",
".stl",
nullptr)) {
return FILE_TYPE_OBJECT_IO;
}
if (BLI_path_extension_check_array(path, imb_ext_image)) {