ShowChannelName refactoring

This commit is contained in:
Armel FAUVEAU
2025-02-15 00:02:28 +01:00
parent e881f17f12
commit 8e2dbee1b5

View File

@@ -948,6 +948,7 @@ static void DrawStatus()
static void ShowChannelName(uint32_t f) static void ShowChannelName(uint32_t f)
{ {
unsigned int i; unsigned int i;
char String[12];
memset(String, 0, sizeof(String)); memset(String, 0, sizeof(String));
if (isListening) if (isListening)
@@ -970,10 +971,13 @@ static void ShowChannelName(uint32_t f)
} }
else else
{ {
/*
for (int i = 36; i < 100; i++) for (int i = 36; i < 100; i++)
{ {
gStatusLine[i] = 0b00000000; gStatusLine[i] = 0b00000000;
} }
*/
memset(&gStatusLine[36], 0, 100 - 28);
} }
ST7565_BlitStatusLine(); ST7565_BlitStatusLine();
} }