dead initial value?

This commit is contained in:
rusefillc 2022-07-30 16:07:40 -04:00
parent 013171d31b
commit 36d40489ee
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ temperature_t getTCharge(int rpm, float tps) {
const auto clt = Sensor::get(SensorType::Clt);
const auto iat = Sensor::get(SensorType::Iat);
float airTemp = 0;
float airTemp;
// Without either valid, return 0C. It's wrong, but it'll pretend to be nice and dense, so at least you won't go lean.
if (!iat && !clt) {