Skip to content

Commit

Permalink
fixed warning in 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeioris committed Mar 3, 2024
1 parent fe343d6 commit c101027
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bool UglTFRuntimeSkeletalMeshComponent::ContainsPhysicsTriMeshData(bool InUseAll
return false;
}

#if (ENGINE_MAJOR_VERSION >= 5 && ENGINE_MINOR_VERSION > 0) || (ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 26)
#if ENGINE_MAJOR_VERSION >= 5 || (ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 26)
return bEnablePerPolyCollision && CurrentSkeletalMeshAsset->GetEnablePerPolyCollision();
#else
return bEnablePerPolyCollision && CurrentSkeletalMeshAsset->bEnablePerPolyCollision;
Expand Down

0 comments on commit c101027

Please sign in to comment.