From: divverent Date: Mon, 8 Jun 2009 15:58:00 +0000 (+0000) Subject: parentheses error in cs_unproject X-Git-Tag: xonotic-v0.1.0preview~1611 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=97ba0820b5cc674aae17cf9708d74a93cc0e3712;p=xonotic%2Fdarkplaces.git parentheses error in cs_unproject git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9011 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/clvm_cmds.c b/clvm_cmds.c index a8028c33..5af7205c 100644 --- a/clvm_cmds.c +++ b/clvm_cmds.c @@ -941,7 +941,7 @@ static void VM_CL_unproject (void) f = PRVM_G_VECTOR(OFS_PARM0); if(v_flipped.integer) f[0] = r_refdef.view.x + r_refdef.view.width - f[0]; - VectorSet(temp, f[2], (-1.0 + 2.0 * (f[0] - r_refdef.view.x)) / r_refdef.view.width * f[2] * -r_refdef.view.frustum_x, (-1.0 + 2.0 * (f[1] - r_refdef.view.y)) / r_refdef.view.height * f[2] * -r_refdef.view.frustum_y); + VectorSet(temp, f[2], (-1.0 + 2.0 * (f[0] - r_refdef.view.x) / r_refdef.view.width) * f[2] * -r_refdef.view.frustum_x, (-1.0 + 2.0 * (f[1] - r_refdef.view.y) / r_refdef.view.height) * f[2] * -r_refdef.view.frustum_y); Matrix4x4_Transform(&r_refdef.view.matrix, temp, PRVM_G_VECTOR(OFS_RETURN)); }