mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
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:
parent
bfa28f1a84
commit
f1eea0176c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue