From 7a21ec382fb3a0b2d06a4814a3b62f85463553f4 Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Sun, 26 Sep 2021 20:09:51 -0400 Subject: [PATCH] Unecessary call.. --- src/renderer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer.c b/src/renderer.c index 5dc966f3..08552350 100644 --- a/src/renderer.c +++ b/src/renderer.c @@ -81,7 +81,7 @@ static int font_set_render_options(RenFont* font) { switch (font->hinting) { case FONT_HINTING_NONE: FT_Library_SetLcdFilter(library, FT_LCD_FILTER_NONE); break; case FONT_HINTING_SLIGHT: - case FONT_HINTING_FULL: FT_Library_SetLcdFilter(library, FT_LCD_FILTER_LIGHT); FT_Library_SetLcdFilterWeights(library, weights); break; + case FONT_HINTING_FULL: FT_Library_SetLcdFilterWeights(library, weights); break; } return FT_RENDER_MODE_LCD; } else {