From 88cac51c0c698a0f4e3ecfcd857ce19a74f84fb0 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 22 Feb 2013 16:28:58 -0800 Subject: [PATCH] tweak sensitiviy on pitch and yaw changes --- interface/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/main.cpp b/interface/src/main.cpp index f35d78ef87..de4da83491 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -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) {