Ref T259, Ref T243 removed guessing from FSX driver code (now in interpolator) and also use guessing in emulated driver

This commit is contained in:
Klaus Basan
2018-04-06 00:35:46 +02:00
committed by Roland Winklmeier
parent f1faeef84a
commit 5c6a37c669
3 changed files with 6 additions and 26 deletions

View File

@@ -424,7 +424,7 @@ namespace BlackSimPlugin
CPartsStatus statusParts;
Q_ASSERT_X(im, Q_FUNC_INFO, "interpolator missing");
const CAircraftSituation s = im->getInterpolatedSituation(now, setup, statusInterpolation);
const CAircraftParts p = im->getInterpolatedParts(now, setup, statusParts, log);
const CAircraftParts p = im->getInterpolatedOrGuessedParts(now, setup, statusParts, log);
m_countInterpolatedParts++;
m_countInterpolatedSituations++;
Q_UNUSED(s);