Skip to content

Commit e62fb97

Browse files
authored
Merge pull request #10128 from iNavFlight/mmosca-bump-max-chars
We already support 4 page fonts, bump max chars to 1024
2 parents b2dccff + 1c64993 commit e62fb97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/io/displayport_msp_osd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ static uint32_t txBytesFree(const displayPort_t *displayPort)
368368
static bool getFontMetadata(displayFontMetadata_t *metadata, const displayPort_t *displayPort)
369369
{
370370
UNUSED(displayPort);
371-
metadata->charCount = 512;
371+
metadata->charCount = 1024;
372372
metadata->version = FONT_VERSION;
373373
return true;
374374
}

0 commit comments

Comments
 (0)