tile_height error changing from 14 to 12 for font

This commit is contained in:
mikey sklar 2023-08-22 11:12:42 -07:00
parent 9af8603dff
commit 46719a6a2e

View file

@ -32,7 +32,7 @@ display = framebufferio.FramebufferDisplay(matrix, auto_refresh=False)
def tilegrid(palette):
return displayio.TileGrid(
bitmap=terminalio.FONT.bitmap, pixel_shader=palette,
width=1, height=1, tile_width=6, tile_height=14, default_tile=32)
width=1, height=1, tile_width=6, tile_height=12, default_tile=32)
g = displayio.Group()