NCBLIT_BRAILLE: invert horizontal layout, fixes plots #1026

This commit is contained in:
nick black 2020-09-23 07:41:10 -04:00 committed by Nick Black
parent 364cf61004
commit 7089f31456

View File

@ -583,7 +583,7 @@ const struct blitset notcurses_blitters[] = {
.blit = quadrant_blit, .name = "quadblitter", .fill = false, },
{ .geom = NCBLIT_4x1, .width = 1, .height = 4, .egcs = L" ▂▄▆█",
.blit = tria_blit, .name = "fourstep", .fill = false, },
{ .geom = NCBLIT_BRAILLE, .width = 2, .height = 4, .egcs = L"⡀⡄⡆⡇⣀⣄⣆⣇⣠⣤⣦⣧⣰⣴⣶⣷⢸⣸⣼⣾⣿",
{ .geom = NCBLIT_BRAILLE, .width = 2, .height = 4, .egcs = L"⢀⢠⢰⢸⡀⣀⣠⣰⡄⣄⣤⣴⡆⣆⣦⣶⡇⣇⣧⣷",
.blit = braille_blit, .name = "braille", .fill = true, },
{ .geom = NCBLIT_SIXEL, .width = 1, .height = 6, .egcs = L"",
.blit = NULL, .name = "sixel", .fill = true, }, // FIXME