0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 22:58:04 +03:00

Display tidy ups

This commit is contained in:
OneOfEleven
2023-09-12 15:31:37 +01:00
parent 08658f8b82
commit 4dfa882770
15 changed files with 145 additions and 141 deletions

View File

@ -40,7 +40,7 @@ void UI_DisplayAircopy(void)
strcpy(String, "AIR COPY");
else
strcpy(String, "AIR COPY(CMP)");
UI_PrintString(String, 2, 127, 0, 8, true);
UI_PrintString(String, 2, 127, 0, 8);
if (gInputBoxIndex == 0)
{
@ -57,7 +57,7 @@ void UI_DisplayAircopy(void)
else
if (gAirCopyIsSendMode == 1)
sprintf(String, "SND:%d", gAirCopyBlockNumber);
UI_PrintString(String, 2, 127, 4, 8, true);
UI_PrintString(String, 2, 127, 4, 8);
ST7565_BlitFullScreen();
}