Skip to content

Commit bdf9821

Browse files
mrdav30Copilot
andauthored
Update src/FixedMathSharp/Bounds/BoundingBox.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent a798ece commit bdf9821

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FixedMathSharp/Bounds/BoundingBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ public static BoundingBox Union(BoundingBox a, BoundingBox b)
392392
{
393393
Min = Vector3d.Min(a.Min, b.Min),
394394
Max = Vector3d.Max(a.Max, b.Max),
395-
Version = Math.Max(a.Version, b.Version),
395+
Version = (byte)Math.Max(a.Version, b.Version),
396396
_isDirty = true
397397
};
398398
}

0 commit comments

Comments
 (0)