diff options
Diffstat (limited to 'font.c')
| -rw-r--r-- | font.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ bool freetype_init(client_state* state, const char* file) { fprintf(stderr, "Failed to create font\n"); return false; } - if (FT_Set_Char_Size(state->ft_face, 0, font_size << 6, 0, 0)) { + if (FT_Set_Char_Size(state->ft_face, 0, config.font_size << 6, 0, 0)) { fprintf(stderr, "Failed to set font size\n"); return false; } |
