From 3c752f86f3aa7c66e385483043d40a10f6158ac2 Mon Sep 17 00:00:00 2001 From: jgmdev Date: Wed, 19 Oct 2022 21:12:04 -0400 Subject: [PATCH] core renderer: increased max font fallbacks to 10 --- src/renderer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer.h b/src/renderer.h index 3e631ce..6cae1e6 100644 --- a/src/renderer.h +++ b/src/renderer.h @@ -11,7 +11,7 @@ #define UNUSED #endif -#define FONT_FALLBACK_MAX 4 +#define FONT_FALLBACK_MAX 10 typedef struct RenFont RenFont; typedef enum { FONT_HINTING_NONE, FONT_HINTING_SLIGHT, FONT_HINTING_FULL } ERenFontHinting; typedef enum { FONT_ANTIALIASING_NONE, FONT_ANTIALIASING_GRAYSCALE, FONT_ANTIALIASING_SUBPIXEL } ERenFontAntialiasing;