From f2e46a34323ee2b9c2b8d9f03b8840fa339ff14a Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Wed, 16 Sep 2026 02:19:10 -0700 Subject: ascii: more font glyph fixups to what came from rototiller Not sure why when I first made this ascii table in rototiller it was 11 high. It seems like a simple mistake, since IIRC this was constructed from a screenshot of a console font I like then exported to a .h from GIMP. There's just a few little errors and they largely stem from getting squished into a height short by one. --- src/ascii.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ascii.h') diff --git a/src/ascii.h b/src/ascii.h index 6c86898..7d2ae69 100644 --- a/src/ascii.h +++ b/src/ascii.h @@ -2,7 +2,7 @@ #define _ASCII_H #define ASCII_WIDTH 5 -#define ASCII_HEIGHT 11 +#define ASCII_HEIGHT 12 extern const char ascii_chars[256][ASCII_WIDTH * ASCII_HEIGHT]; -- cgit v1.2.3