Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
LeNitrous committed Jul 4, 2023
1 parent 5db261d commit 2d287da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/Vignette/Rendering/Primitives/Mesh.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ public Mesh(MeshFormat format)
public readonly bool Equals(Mesh other)
{
return Mode == other.Mode &&
Format == other.Format &&
indices is not null && ((IStructuralEquatable)indices).Equals(other.indices, EqualityComparer<short>.Default) &&
vertices is not null && ((IStructuralEquatable)vertices).Equals(other.vertices, EqualityComparer<byte>.Default);
Format == other.Format &&
indices is not null && ((IStructuralEquatable)indices).Equals(other.indices, EqualityComparer<short>.Default) &&
vertices is not null && ((IStructuralEquatable)vertices).Equals(other.vertices, EqualityComparer<byte>.Default);
}

public override readonly bool Equals([NotNullWhen(true)] object? obj)
Expand Down

0 comments on commit 2d287da

Please sign in to comment.