Fixed type in UI_PrintString.

This commit is contained in:
Dual Tachyon 2023-08-29 18:58:42 +01:00
parent 6555eb8959
commit d84d27f8f8
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ void UI_GenerateChannelStringEx(char *pString, bool bShowPrefix, uint8_t Channel
}
}
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, int Width, bool bCentered)
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width, bool bCentered)
{
uint32_t i, Length;

View File

@ -22,7 +22,7 @@
void UI_GenerateChannelString(char *pString, uint8_t Channel);
void UI_GenerateChannelStringEx(char *pString, bool bShowPrefix, uint8_t ChannelNumber);
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, int Width, bool bCentered);
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width, bool bCentered);
void UI_DisplayFrequency(const char *pDigits, uint8_t X, uint8_t Y, bool bDisplayLeadingZero, bool bFlag);
void UI_DisplaySmallDigits(uint8_t Size, const char *pString, uint8_t X, uint8_t Y);