mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-21 09:32:01 +00:00
fix text drawing
This commit is contained in:
parent
31e380526c
commit
16d84320ba
@ -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++;
|
||||
|
Loading…
Reference in New Issue
Block a user