From 10b5cde5059ec9e29ddb7811602dbc7e7e16deb1 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Tue, 11 Oct 2016 17:55:23 +0100 Subject: [PATCH] Fix interactive-mode row count so it doesn't scroll the header off the top of the terminal. --- interactive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interactive.c b/interactive.c index 98e4c3f..02d3152 100644 --- a/interactive.c +++ b/interactive.c @@ -78,7 +78,7 @@ void interactiveShowData(void) { struct aircraft *a = Modes.aircrafts; static uint64_t next_update; uint64_t now = mstime(); - int count = 0; + int count = 3; char progress; char spinner[4] = "|/-\\";