diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-10-17 18:21:51 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-10-17 18:21:51 -0400 |
| commit | ec8c94dc43db11c79ef58b212cacfadec09bb59c (patch) | |
| tree | dac513e9acb40b2d6f606031bb4d9299e2e8c423 /font.c | |
| parent | 7abba4bd6aea943870bfd571866e36a6167c80a2 (diff) | |
lines argument
Diffstat (limited to 'font.c')
| -rw-r--r-- | font.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ bool freetype_init(client_state* state, const char* file) { return false; } state->load_flags = FT_LOAD_RENDER | FT_LOAD_TARGET_(FT_RENDER_MODE_SDF); - state->line_height = (float)(state->ft_face->size->metrics.height >> 6); + state->line_height = state->ft_face->size->metrics.height >> 6; return true; } |
