Move vertical line 2px on the left

This commit is contained in:
Armel FAUVEAU
2024-07-04 05:17:20 +02:00
parent 44527811b6
commit 822781900b

View File

@@ -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;
}