Fix typo in PD info screen

This commit is contained in:
Ben V. Brown
2022-04-04 13:05:18 +10:00
parent 943d6bf0bd
commit d1d403376f

View File

@@ -855,7 +855,7 @@ static void showPDDebug(void) {
OLED::print(SymbolSpace, FontStyle::SMALL);
OLED::printNumber(current_a_x100 / 100, 2, FontStyle::SMALL, true); // print the current in 0.1A res
OLED::print(SymbolDot, FontStyle::SMALL);
OLED::printNumber(current_a_x100 % 10, 1, FontStyle::SMALL, true); // print the current in 0.1A res
OLED::printNumber(current_a_x100 % 100, 2, FontStyle::SMALL, true); // print the current in 0.1A res
OLED::print(SymbolAmps, FontStyle::SMALL);
} else {