Fix mat4_getFov;

This commit is contained in:
bjorn 2022-08-04 21:55:22 -07:00
parent 019814e2c1
commit 7ceefcf4c2
1 changed files with 2 additions and 2 deletions

View File

@ -651,8 +651,8 @@ MAF void mat4_getFov(mat4 m, float* left, float* right, float* up, float* down)
float v[4][4] = {
{ 1.f, 0.f, 0.f, 1.f },
{ -1.f, 0.f, 0.f, 1.f },
{ 0.f, -1.f, 0.f, 1.f },
{ 0.f, 1.f, 0.f, 1.f }
{ 0.f, 1.f, 0.f, 1.f },
{ 0.f, -1.f, 0.f, 1.f }
};
float transpose[16];