From 41c44353f71458d3517d0e0e91b883826877f8fa Mon Sep 17 00:00:00 2001 From: HarukiToreda <116696711+HarukiToreda@users.noreply.github.com> Date: Fri, 28 Mar 2025 21:23:41 -0400 Subject: [PATCH] removed the 3x scale --- src/graphics/Screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index ade9eab4e..8642aaa5f 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -445,7 +445,7 @@ static void drawBattery(OLEDDisplay *display, int16_t x, int16_t y, uint8_t *img int scale = 1; if (screenWidth >= 200) scale = 2; - if (screenWidth >= 300) scale = 3; + if (screenWidth >= 300) scale = 2; // Do NOT go higher than 2 // Draw scaled battery image (16 columns × 8 rows) for (int col = 0; col < 16; col++) {