fix text drawing

This commit is contained in:
Jorj Bauer 2022-02-02 10:02:19 -05:00
parent 31e380526c
commit 16d84320ba
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ void PhysicalDisplay::drawCharacter(uint8_t mode, uint16_t x, uint16_t y, char c
if (*ch & (1 << (x_off))) {
drawPixel(x+x_off, y+y_off, onPixel);
} else {
drawPixel(x+x_off, y+y_off, onPixel);
drawPixel(x+x_off, y+y_off, offPixel);
}
}
ch++;