From 9a5a4a65caf2645c20060a5172f8332fb8b7ea0d Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 28 Jun 2020 20:50:35 -0400 Subject: [PATCH] demo: enable HUD by default #743 --- src/demo/hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo/hud.c b/src/demo/hud.c index 2c70c6861..4abe8d116 100644 --- a/src/demo/hud.c +++ b/src/demo/hud.c @@ -6,7 +6,7 @@ // their mouse. it should always be on the top of the z-stack, unless hidden. struct ncplane* hud = NULL; -static bool hud_hidden = true; +static bool hud_hidden; static bool plot_hidden = true; static struct ncuplot* plot; static uint64_t plottimestart;