From 725f4a5b5f5f44b3d44d6d719a03e7d361d35a14 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Fri, 4 Oct 2024 15:50:12 +0200 Subject: [PATCH] fix typo --- src/ui4x/fonts.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ui4x/fonts.c b/src/ui4x/fonts.c index 6293121..5935131 100644 --- a/src/ui4x/fonts.c +++ b/src/ui4x/fonts.c @@ -22,9 +22,7 @@ static unsigned char lesser_than_or_eq_bits[] = { 48, 12, 3, 12, 51, 12, 48 }; #define infinity_width 7 #define infinity_height 7 -static unsigned char infinity_bits[] = { - 0, 54, 73, 73, 73, 54, -}; +static unsigned char infinity_bits[] = { 0, 54, 73, 73, 73, 54, 0 }; #define not_equal_width 7 #define not_equal_height 7 @@ -42,7 +40,7 @@ static unsigned char dot_bits[] = { #define single_quote_width 3 #define single_quote_height 7 -static unsigned char single_quote_bits[] = { 0x02, 0x02, 0x0, 0x0, 0x0, 0x0, 0x0 }; +static unsigned char single_quote_bits[] = { 0x02, 0x02, 0x02, 0x0, 0x0, 0x0, 0x0 }; #define blank_width 4 #define blank_height 7