From 1369503aba1ae0c64e6c25b32cc5552bbdead8fb Mon Sep 17 00:00:00 2001 From: Aaron Suen Date: Fri, 17 May 2013 17:10:39 -0400 Subject: Fix math for isBlockInSight. Fixes #718 (client-side). --- src/camera.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/camera.cpp') diff --git a/src/camera.cpp b/src/camera.cpp index 6224a2b8e..0dd0a767b 100644 --- a/src/camera.cpp +++ b/src/camera.cpp @@ -342,8 +342,7 @@ void Camera::update(LocalPlayer* player, f32 frametime, v2u32 screensize, m_fov_y = fov_degrees * M_PI / 180.0; // Increase vertical FOV on lower aspect ratios (<16:10) m_fov_y *= MYMAX(1.0, MYMIN(1.4, sqrt(16./10. / m_aspect))); - // WTF is this? It can't be right - m_fov_x = 2 * atan(0.5 * m_aspect * tan(m_fov_y)); + m_fov_x = 2 * atan(m_aspect * tan(0.5 * m_fov_y)); m_cameranode->setAspectRatio(m_aspect); m_cameranode->setFOV(m_fov_y); -- cgit v1.2.3