aboutsummaryrefslogtreecommitdiff
path: root/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'font.c')
-rw-r--r--font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/font.c b/font.c
index 9b0ba48..c67e427 100644
--- a/font.c
+++ b/font.c
@@ -66,7 +66,7 @@ bool freetype_init(client_state* state, const char* file) {
}
state->load_flags = FT_LOAD_RENDER;
state->line_height = state->ft_face->size->metrics.height >> 6;
- state->horizontal_spacing = state->line_height;
+ state->horizontal_spacing = state->line_height / 2.0f;
return true;
}