Skip to content

Commit

Permalink
Code style fix to fbx_document _find_element_name()
Browse files Browse the repository at this point in the history
  • Loading branch information
bqqbarbhg committed May 6, 2024
1 parent 9ec84ca commit 9b91bc8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/fbx/fbx_document.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,7 @@ static ufbx_skin_deformer *_find_skin_deformer(ufbx_skin_cluster *p_cluster) {
return nullptr;
}

static String _find_element_name(ufbx_element *p_element)
{
static String _find_element_name(ufbx_element *p_element) {
if (p_element->name.length > 0) {
return FBXDocument::_as_string(p_element->name);
} else if (p_element->instances.count > 0) {
Expand Down

0 comments on commit 9b91bc8

Please sign in to comment.