diff --git a/rehlds/engine/r_studio.cpp b/rehlds/engine/r_studio.cpp index 71e688a..5b12b83 100644 --- a/rehlds/engine/r_studio.cpp +++ b/rehlds/engine/r_studio.cpp @@ -187,9 +187,9 @@ void QuaternionSlerp(vec_t *p, vec_t *q, float t, vec_t *qt) cosom = p[0] * q[0] + p[1] * q[1] + p[2] * q[2] + p[3] * q[3]; - if ((1.0 + cosom) > 0.00000001) + if ((1.0 + cosom) > 0.000001) { - if ((1.0 - cosom) > 0.00000001) + if ((1.0 - cosom) > 0.000001) { omega = acos(cosom); sinom = sin(omega);