1
0
mirror of synced 2025-02-21 12:50:12 +01:00

Fix Calibration Mode returning opposite value (#720)

This commit is contained in:
DragonRatTiger / リュウコ 2024-10-23 19:11:54 -05:00 committed by GitHub
parent b41875591b
commit d5f62b9bf1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -171,7 +171,7 @@ internal class CActCalibrationMode : CActivity {
return 0; return 0;
} }
public int CurrentOffset() { public int CurrentOffset() {
return CalibrateTick.CurrentValue > 250 ? CalibrateTick.CurrentValue - 500 : CalibrateTick.CurrentValue; return -(CalibrateTick.CurrentValue > 250 ? CalibrateTick.CurrentValue - 500 : CalibrateTick.CurrentValue);
} }
private void UpdateText() { private void UpdateText() {