From 7bd5bb719a6f082b642fee0fec87615b667b1abe Mon Sep 17 00:00:00 2001 From: Matthew Mondor Date: Mon, 23 Oct 2023 04:51:39 +0000 Subject: [PATCH] AnalogTerm2: Also report leading at startup --- mmsoftware/analogterm2/src/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mmsoftware/analogterm2/src/main.c b/mmsoftware/analogterm2/src/main.c index 5e85aea..4487b71 100644 --- a/mmsoftware/analogterm2/src/main.c +++ b/mmsoftware/analogterm2/src/main.c @@ -624,10 +624,11 @@ endopt: goto noheader; state_goto(state, 0, 1); - state_printf(state, 0, "(Win: %dx%d, Txt: %dx%d, Fnt: %dx%d)", + state_printf(state, 0, "(Wn: %dx%d, Tx: %dx%d, Fn: %dx%d, Ld: %d)", screen->pixels_width, screen->pixels_height, cfg_text_width, cfg_text_height, - cfg_font_width, cfg_font_height); + cfg_font_width, cfg_font_height, + cfg_leading); state_goto(state, 1, 1); state_prints(state, "READY", 0); state_goto(state, 1, (cfg_text_width / 2) - 17); -- 2.9.0