diff --git a/firmware/controllers/limp_manager.cpp b/firmware/controllers/limp_manager.cpp index 573f2f9bf5..ac90a962b7 100644 --- a/firmware/controllers/limp_manager.cpp +++ b/firmware/controllers/limp_manager.cpp @@ -76,6 +76,7 @@ todo AndreiKA this change breaks 22 unit tests? */ } +#if EFI_LAUNCH_CONTROL // Fuel cut if launch control engaged if (engine->launchController.isLaunchFuelRpmRetardCondition()) { allowFuel.clear(ClearReason::LaunchCut); @@ -86,7 +87,7 @@ todo AndreiKA this change breaks 22 unit tests? if (engine->launchController.isLaunchSparkRpmRetardCondition()) { allowSpark.clear(ClearReason::LaunchCut); } - +#endif // EFI_LAUNCH_CONTROL m_transientAllowInjection = allowFuel; m_transientAllowIgnition = allowSpark;