Skip to content

Commit

Permalink
Another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KillzXGaming committed Nov 5, 2024
1 parent 69a2d2d commit 709a71e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1407,9 +1407,9 @@ private BoundingBox CalculateBoundingBox(FMDL model)
min.X = Math.Min(bounding.Min.X, min.X);
min.Y = Math.Min(bounding.Min.Y, min.Y);
min.Z = Math.Min(bounding.Min.Z, min.Z);
max.X = Math.Min(bounding.Max.X, max.X);
max.Y = Math.Min(bounding.Max.Y, max.Y);
max.Z = Math.Min(bounding.Max.Z, max.Z);
max.X = Math.Max(bounding.Max.X, max.X);
max.Y = Math.Max(bounding.Max.Y, max.Y);
max.Z = Math.Max(bounding.Max.Z, max.Z);
}
}

Expand Down

0 comments on commit 709a71e

Please sign in to comment.