Skip to content

Commit ff768cd

Browse files
committed
Simplify G25 sequential calibration wording
Same behavior, less wordy
1 parent b7cc4e3 commit ff768cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/SimRacing.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,8 +1601,8 @@ void LogitechShifterG25::serialCalibrationSequential(Stream& iface) {
16011601

16021602
const uint8_t NumPoints = 3;
16031603
const char* directions[2][2] = {
1604-
{ "towards you", "up" },
1605-
{ "away from you", "down" },
1604+
{ "pull", "towards you" },
1605+
{ "push", "away from you" },
16061606
};
16071607
int data[NumPoints];
16081608

@@ -1615,9 +1615,9 @@ void LogitechShifterG25::serialCalibrationSequential(Stream& iface) {
16151615
iface.print(F("Leave the gear shifter in neutral"));
16161616
}
16171617
else {
1618-
iface.print(F("Please move the gear shifter "));
1618+
iface.print(F("Please "));
16191619
iface.print(directions[i - 1][0]);
1620-
iface.print(F(" to sequentially shift "));
1620+
iface.print(F(" the gear shifter "));
16211621
iface.print(directions[i - 1][1]);
16221622
iface.print(F(" and hold it there"));
16231623
}

0 commit comments

Comments
 (0)