tweak sensitiviy on pitch and yaw changes

This commit is contained in:
Stephen Birarda 2013-02-22 16:28:58 -08:00
parent 2ab58e00ca
commit 88cac51c0c

View file

@ -417,10 +417,10 @@ void update_pos(float frametime)
// Update render direction (pitch/yaw) based on measured gyro rates
const int MIN_YAW_RATE = 100;
const float YAW_SENSITIVITY = 0.08;
const int MIN_PITCH_RATE = 100;
const float PITCH_SENSITIVITY = 0.04;
const float YAW_SENSITIVITY = 0.02;
const float PITCH_SENSITIVITY = 0.05;
if (fabs(measured_yaw_rate) > MIN_YAW_RATE)
{