Fix Calibration Mode returning opposite value (#720)
This commit is contained in:
parent
b41875591b
commit
d5f62b9bf1
@ -171,7 +171,7 @@ internal class CActCalibrationMode : CActivity {
|
||||
return 0;
|
||||
}
|
||||
public int CurrentOffset() {
|
||||
return CalibrateTick.CurrentValue > 250 ? CalibrateTick.CurrentValue - 500 : CalibrateTick.CurrentValue;
|
||||
return -(CalibrateTick.CurrentValue > 250 ? CalibrateTick.CurrentValue - 500 : CalibrateTick.CurrentValue);
|
||||
}
|
||||
|
||||
private void UpdateText() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user