From 0e48d96118c39ac739e3151bc2b34ae6014ecb29 Mon Sep 17 00:00:00 2001 From: ehofman Date: Thu, 10 Nov 2005 10:02:00 +0000 Subject: [PATCH] Small bug fix, get the weighted average of the same side. --- src/Aircraft/replay.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aircraft/replay.cxx b/src/Aircraft/replay.cxx index b53ffce02..e650a8b31 100644 --- a/src/Aircraft/replay.cxx +++ b/src/Aircraft/replay.cxx @@ -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 -- 2.39.5