Fix the too near far-clip plane.

I don't know if I miss-copied that, or if there's a bug in FTE's code.
This commit is contained in:
Bill Currie 2012-01-12 13:41:06 +09:00
parent bfa28f1a84
commit f1eea0176c
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ R_ViewChanged (float aspect)
proj[2] = 0;
proj[6] = 0;
proj[10] = (fard + neard) / (neard - fard);
proj[14] = (2 * fard + neard) / (neard - fard);
proj[14] = (2 * fard * neard) / (neard - fard);
proj[3] = 0;
proj[7] = 0;