From 97615d74bde3dd6ce3e746f1b3256c263fe24539 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Wed, 6 Apr 2022 16:39:28 -0700 Subject: Different sized fonts --- include/graphics/glyphs.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/graphics/glyphs.h') diff --git a/include/graphics/glyphs.h b/include/graphics/glyphs.h index 1a9319d..2a16b84 100644 --- a/include/graphics/glyphs.h +++ b/include/graphics/glyphs.h @@ -1,6 +1,10 @@ #ifndef GRAPHICS_GLYPHS_H #define GRAPHICS_GLYPHS_H -#include "font.bin.h" +#ifdef LARGE_LETTERS +#include "font.big.h" +#else +#include "font.small.h" +#endif #endif -- cgit v1.2.1