From 16320792c25bf3cbf80002320e479de4be5a385b Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 6 Dec 2020 06:40:39 -0500 Subject: [PATCH] demo: turn on NCPLOT_OPTION_PRINTSAMPLE #1183 --- src/demo/hud.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/demo/hud.c b/src/demo/hud.c index 321a70976..f13806094 100644 --- a/src/demo/hud.c +++ b/src/demo/hud.c @@ -635,7 +635,8 @@ int fpsgraph_init(struct notcurses* nc){ ncplot_options opts; memset(&opts, 0, sizeof(opts)); opts.flags = NCPLOT_OPTION_LABELTICKSD | - NCPLOT_OPTION_EXPONENTIALD; + NCPLOT_OPTION_EXPONENTIALD | + NCPLOT_OPTION_PRINTSAMPLE; opts.gridtype = NCBLIT_BRAILLE; opts.legendstyle = NCSTYLE_ITALIC | NCSTYLE_BOLD; opts.title = "frames per decisecond";