From 5eb902592cfb291f3fd9107ddcaf87c1ebc393ca Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 18 Aug 2023 09:19:22 -0700 Subject: [PATCH] c include: u8 => u16 --- include/ghostty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ghostty.h b/include/ghostty.h index 31d2c7e5b..a6fc51d9b 100644 --- a/include/ghostty.h +++ b/include/ghostty.h @@ -243,7 +243,7 @@ typedef struct { void *userdata; void *nsview; double scale_factor; - uint8_t font_size; + uint16_t font_size; } ghostty_surface_config_s; typedef void (*ghostty_runtime_wakeup_cb)(void *);