Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
rnd-ash committed Mar 23, 2024
1 parent 9024ed1 commit 77ec2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pressure_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void PressureManager::update_pressures(GearboxGear current_gear) {
} else {

float amplifier = 1.0;
if ((this->shift_circuit_flag == (uint8_t)ShiftCircuit::sc_1_2 || this->shift_circuit_flag == (uint8_t)ShiftCircuit::sc_2_1) && this->shift_stage != ShiftStage::MaxPressure) {
if ((this->shift_circuit_flag == (uint8_t)ShiftCircuit::sc_1_2) && this->shift_stage != ShiftStage::MaxPressure) {
amplifier = 1.993;
}

Expand Down

0 comments on commit 77ec2f2

Please sign in to comment.