1
0
Fork 0

Show accelerated speed.

This commit is contained in:
curt 1999-09-28 22:41:43 +00:00
parent bcc03db51c
commit 7f25206f92

View file

@ -161,7 +161,8 @@ float get_rudderval( void )
float get_speed( void )
{
// Make an explicit function call.
float speed = current_aircraft.fdm_state->get_V_equiv_kts();
float speed = current_aircraft.fdm_state->get_V_equiv_kts()
* current_options.get_speed_up();
return( speed );
}