Remove some stuff to make space
All checks were successful
Build Firmware / build (push) Successful in 32s

This commit is contained in:
2025-03-31 22:00:54 +02:00
parent f1904e03fe
commit 0ea8767a8b
6 changed files with 16 additions and 61 deletions

View File

@@ -227,10 +227,6 @@ void UI_DisplayStatus()
size = sizeof(gFontMute);
}
#endif
else if (gBackLight) {
src = gFontLight;
size = sizeof(gFontLight);
}
#ifdef ENABLE_FEAT_F4HWN_CHARGING_C
else if (gChargingWithTypeC) {
src = BITMAP_USB_C;
@@ -239,9 +235,7 @@ void UI_DisplayStatus()
#endif
// Perform the memcpy if a source was selected
if (src) {
memcpy(line + x + 1, src, size);
}
memcpy(line + x + 1, src, size);
// Battery
unsigned int x2 = LCD_WIDTH - sizeof(BITMAP_BatteryLevel1) - 0;