1
0
Fork 0

Small bug fix, get the weighted average of the same side.

This commit is contained in:
ehofman 2005-11-10 10:02:00 +00:00
parent 14c3bc5932
commit 0e48d96118

View file

@ -363,7 +363,7 @@ static FGReplayData interpolate( double time, FGReplayData f1, FGReplayData f2 )
// Brake controls
result.ctrls.brake_left
= weight( ctrls1.brake_left, ctrls2.brake_right, ratio );
= weight( ctrls1.brake_left, ctrls2.brake_left, ratio );
result.ctrls.brake_right
= weight( ctrls1.brake_right, ctrls2.brake_right, ratio );
result.ctrls.brake_parking