diff --git a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs index fcc5ede32051f6e02c908515a719f19e302e535b..6be034f2731d8181f6613cf6c24c156e249a66f3 100644 --- a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs +++ b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs @@ -385,9 +385,14 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl IShiftStrategy strategy; switch (runData.GearboxData.Type) { case GearboxType.AMT: +#if CLASSIC_TCU + strategy = new AMTShiftStrategy(runData, container); + +#else strategy = runData.GearshiftParameters == null ? (IShiftStrategy)new AMTShiftStrategy(runData, container) : new AMTShiftStrategyV2(runData, container); +#endif break; case GearboxType.MT: strategy = new MTShiftStrategy(runData, container);