FGear Vehicle Physics (v1.4)

How we change this?:

Reverse brake option added, if you press throttle while going backwards in 1st gear the vehicle will automatically brake for you. The same thing works with the reverse gear.

I had a change in StandardInput:
// ADDED - Set gear 1 when accel on backwards
if (mForward > 0.0f && mVehicle->getTransmission()->getCurGear() < 0)
{ mVehicle->getTransmission()->setCurrentGear(1, true); }

Because if you are going backwards or in reverse and you press accel, i expect the car changes auto to 1st gear and accel.

But now, it brakes when you press accel. How to change that?

I saw a new param for reverse, i set negative values, 0 or 999… but still does that.

How to change that behaviour to do what i want?