From 64b44f4bcec3f01be026c7c80efa07931a5a7b01 Mon Sep 17 00:00:00 2001 From: pjht Date: Sun, 15 Sep 2024 11:49:13 -0500 Subject: [PATCH] Remove buffer size debug print --- src/main.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4f4b43d..5f02a46 100644 --- a/src/main.rs +++ b/src/main.rs @@ -203,13 +203,6 @@ impl FramebufferWriter { .new_line_size .ceil() as usize + 1; let char_width = font.metrics('a', 12.0).advance_width.ceil() as usize; - println!( - "Buffer is {}x{} px, ({} chars x {} lines)", - fbuf.xres, - fbuf.yres, - fbuf.xres / char_width, - fbuf.yres / line_height - ); Self { font, layout,