auto-sync

This commit is contained in:
rusEfi 2015-05-02 01:04:51 -04:00
parent 3655bca597
commit 0e3e80e601
1 changed files with 1 additions and 2 deletions

View File

@ -81,8 +81,7 @@ floatms_t getBaseFuel(int rpm DECLARE_ENGINE_PARAMETER_S) {
float maf = getRealMaf(PASS_ENGINE_PARAMETER_F) + engine->mapAccelEnrichment.getMapEnrichment(PASS_ENGINE_PARAMETER_F);
return tpsAccelEnrich + getRealMafFuel(maf, rpm PASS_ENGINE_PARAMETER);
} else {
float engineLoad = getEngineLoadT(PASS_ENGINE_PARAMETER_F);
return tpsAccelEnrich + getBaseTableFuel(engineConfiguration, rpm, engineLoad);
return tpsAccelEnrich + engine->engineState.baseTableFuel;
}
}