Removed _USE_MATH_DEFINES.

This commit is contained in:
Branimir Karadzic
2014-10-23 21:10:44 -07:00
parent 96ecaffee0
commit 7a829583ce
3 changed files with 4 additions and 4 deletions

View File

@@ -141,9 +141,9 @@ struct Camera
float right[3] =
{
sinf(m_horizontalAngle - float(M_PI)/2.0f),
sinf(m_horizontalAngle - bx::piHalf),
0,
cosf(m_horizontalAngle - float(M_PI)/2.0f),
cosf(m_horizontalAngle - bx::piHalf),
};
if (m_keys & CAMERA_KEY_UP)