From 58891cff1d49ef4e1230b70597cc5032be998cfb Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 18 Sep 2021 20:59:31 -0400 Subject: [PATCH] Update config for new fonts --- src/config.def.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.def.hpp b/src/config.def.hpp index 5b06253..185e1d8 100644 --- a/src/config.def.hpp +++ b/src/config.def.hpp @@ -87,7 +87,7 @@ constexpr char DATA_IMG[] = DATA_IMG_; // IMAGE_LOCATIONS // Locations of all static images used static const char* IMAGE_LOCATIONS[] = { - "img/bmp_24.png", + "bmp_24.png", }; // FONT_DIR @@ -102,7 +102,7 @@ struct FONT_SIZE { const size_t _size; }; static const FONT_SIZE FONT_LOCATIONS[] = { - { "elianto-normal.ttf", 24 }, + { "Roboto_Mono/RobotoMono-Medium.ttf", 24 }, }; // CONST_STRINGS @@ -112,5 +112,5 @@ struct FONT_SIZE_STRING { const FONT_SIZE _font_size; }; static const FONT_SIZE_STRING CONST_STRINGS[] = { - { "Test string 12345", FONT_LOCATIONS[1] }, + { "Test string 12345", { "Roboto_Mono/RobotoMono-Medium.ttf", 24 } }, };