mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-17 14:24:08 +00:00
The real pickup reflection fix
This commit is contained in:
parent
2f40c3dc8b
commit
581cb5edfa
6 changed files with 59 additions and 32 deletions
|
@ -3587,8 +3587,8 @@ CCamera::CalculateDerivedValues(void)
|
|||
m_cameraMatrix = Invert(m_matrix);
|
||||
|
||||
float hfov = DEGTORAD(CDraw::GetScaledFOV()/2.0f);
|
||||
float c = cos(hfov);
|
||||
float s = sin(hfov);
|
||||
float c = Cos(hfov);
|
||||
float s = Sin(hfov);
|
||||
|
||||
// right plane
|
||||
m_vecFrustumNormals[0] = CVector(c, -s, 0.0f);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue