Removing leftover tab character.

This commit is contained in:
Thompson Lee 2016-08-04 06:29:32 -04:00
parent 8d0fd81079
commit 298b8b08fa

View File

@ -13,6 +13,6 @@ void Mtx_OrthoTilt(C3D_Mtx* mtx, float left, float right, float bottom, float to
mtx->r[1].x = 2.0f / (left - right);
mtx->r[1].w = (left + right) / (right - left);
mtx->r[2].z = 1.0f / (near - far);
mtx->r[2].w = 0.5f*(far + near) / (near - far) - 0.5f;
mtx->r[2].w = 0.5f*(far + near) / (near - far) - 0.5f;
mtx->r[3].w = 1.0f;
}