Merge pull request #81986 from spazzylemons/master

Remove unnecessary line from Projection::get_z_far
This commit is contained in:
Rémi Verschelde 2023-09-20 18:55:32 +02:00
commit 59139df16e
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -408,7 +408,6 @@ real_t Projection::get_z_far() const {
matrix[11] - matrix[10],
matrix[15] - matrix[14]);
new_plane.normal = -new_plane.normal;
new_plane.normalize();
return new_plane.d;