From 1d0724330eca9f87f02705e674e4bc76d6382073 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 19 May 2022 14:07:50 -0700 Subject: [PATCH] change default font size --- src/Grid.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grid.zig b/src/Grid.zig index b65f990eb..ae9a46f89 100644 --- a/src/Grid.zig +++ b/src/Grid.zig @@ -89,7 +89,7 @@ pub fn init(alloc: Allocator) !Grid { errdefer atlas.deinit(alloc); var font = try FontAtlas.init(atlas); errdefer font.deinit(alloc); - try font.loadFaceFromMemory(face_ttf, 40); + try font.loadFaceFromMemory(face_ttf, 32); // Load all visible ASCII characters and build our cell width based on // the widest character that we see.