From d1d403376f796fbf3077e4752435be147ddb68a5 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Mon, 4 Apr 2022 13:05:18 +1000 Subject: [PATCH] Fix typo in PD info screen --- source/Core/Threads/GUIThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Core/Threads/GUIThread.cpp b/source/Core/Threads/GUIThread.cpp index d53cd303..822b34b6 100644 --- a/source/Core/Threads/GUIThread.cpp +++ b/source/Core/Threads/GUIThread.cpp @@ -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 {