1
0
Fork 0

Back out the joystick fixed timing patch for now

This commit is contained in:
ehofman 2003-06-04 14:02:23 +00:00
parent bc767b9bba
commit ae51ae6882

View file

@ -692,13 +692,19 @@ FGInput::_update_keyboard (double dt)
void void
FGInput::_update_joystick (double dt) FGInput::_update_joystick (double dt)
{ {
#ifdef REMOVE_ME_AFTER_FLIGHTGEAR_0_9_2_RELEASE
static double _last_dt = 1.0;
#else
static double _last_dt = 0.0; static double _last_dt = 0.0;
#endif
int modifiers = FG_MOD_NONE; // FIXME: any way to get the real ones? int modifiers = FG_MOD_NONE; // FIXME: any way to get the real ones?
int i, j, buttons; int i, j, buttons;
// float js_val, diff; // float js_val, diff;
float axis_values[MAX_JOYSTICK_AXES]; float axis_values[MAX_JOYSTICK_AXES];
#ifdef REMOVE_ME_AFTER_FLIGHTGEAR_0_9_2_RELEASE
_last_dt += dt; _last_dt += dt;
#endif
for ( i = 0; i < MAX_JOYSTICKS; i++) { for ( i = 0; i < MAX_JOYSTICKS; i++) {
@ -753,10 +759,12 @@ FGInput::_update_joystick (double dt)
} }
} }
#if REMOVE_ME_AFTER_FLIGHTGEAR_0_9_2_RELEASE
if (_last_dt > 0.05) { if (_last_dt > 0.05) {
while(_last_dt >= 0.05) while(_last_dt >= 0.05)
_last_dt -= 0.05; _last_dt -= 0.05;
} }
#endif
} }
void void