From 822781900b0742a2cf6268455422d890c314a3e3 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Thu, 4 Jul 2024 05:17:20 +0200 Subject: [PATCH] Move vertical line 2px on the left --- ui/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/menu.c b/ui/menu.c index f2340aa..9337da0 100644 --- a/ui/menu.c +++ b/ui/menu.c @@ -457,10 +457,10 @@ void UI_DisplayMenu(void) UI_DisplayClear(); #ifdef ENABLE_FEAT_F4HWN - UI_DrawLineBuffer(gFrameBuffer, 50, 0, 50, 55, 1); // Be ware, status zone = 8 lines, the rest = 56 ->total 64 + UI_DrawLineBuffer(gFrameBuffer, 48, 0, 48, 55, 1); // Be ware, status zone = 8 lines, the rest = 56 ->total 64 //UI_DrawLineDottedBuffer(gFrameBuffer, 0, 46, 50, 46, 1); - for (uint8_t i = 0; i < 50; i += 2) + for (uint8_t i = 0; i < 48; i += 2) { gFrameBuffer[5][i] = 0x40; }