[qw] Actually fix the idle scale

Oops. I really need to get cl_view merged.
This commit is contained in:
Bill Currie 2021-07-24 11:38:28 +09:00
parent d3b7f7fbc8
commit 076f424d39
1 changed files with 2 additions and 2 deletions

View File

@ -518,8 +518,8 @@ idle_quat (vec4f_t axis, cvar_t *cycle, cvar_t *level)
}
float scale = sin (cl.time * cycle->value);
float ang = scale * level->value * v_idlescale->value;
float c = cos (ang);
float s = sin (ang);
float c = cos (ang * M_PI / 360);
float s = sin (ang * M_PI / 360);
return axis * s + identity * c;
}