From e43a6c2d6735e80191b0764b258a3f3060abc221 Mon Sep 17 00:00:00 2001 From: Narayan <117493082+narayanx@users.noreply.github.com> Date: Tue, 19 Aug 2025 01:04:20 -0700 Subject: [PATCH] fixed likely typo in top screen log window height --- source/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/main.c b/source/main.c index fa8981a..a82dcac 100644 --- a/source/main.c +++ b/source/main.c @@ -308,7 +308,8 @@ int main(int argc, char **argv) consoleInit(GFX_BOTTOM, &bottomScreen); /* Set console sizes. */ - consoleSetWindow(&topScreenLog, 1, 3, 50, 36); + // (y-1) + (height) <= 30 (top screen only fits 30 lines) + consoleSetWindow(&topScreenLog, 1, 3, 50, 28); consoleSetWindow(&topScreenInfo, 1, 1, 50, 2); consoleSelect(&bottomScreen);