mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 23:25:53 +08:00
T37 Fixed wrong parameter names.
This commit is contained in:
@@ -37,14 +37,14 @@ namespace BlackMisc
|
||||
}
|
||||
|
||||
BlackMisc::Aviation::CAircraftParts CInterpolatorMulti::getInterpolatedParts(
|
||||
qint64 cutoffTime, const CInterpolationAndRenderingSetup &setup, CPartsStatus &partsStatus, bool log)
|
||||
qint64 currentTimeSinceEpoc, const CInterpolationAndRenderingSetup &setup, CPartsStatus &partsStatus, bool log)
|
||||
{
|
||||
switch (m_mode)
|
||||
{
|
||||
case ModeLinear:
|
||||
return m_linear.getInterpolatedParts(cutoffTime, setup, partsStatus, log);
|
||||
return m_linear.getInterpolatedParts(currentTimeSinceEpoc, setup, partsStatus, log);
|
||||
case ModeSpline:
|
||||
return m_spline.getInterpolatedParts(cutoffTime, setup, partsStatus, log);
|
||||
return m_spline.getInterpolatedParts(currentTimeSinceEpoc, setup, partsStatus, log);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user