From 29fb506f48bb19a17ea4bfd5d620c1a3f5bb71d7 Mon Sep 17 00:00:00 2001 From: karlstav Date: Sat, 15 Dec 2018 14:57:40 +0100 Subject: [PATCH] fixed #242 issue where raw outut was limited to 67 samples ouput the issue was caused by check for user setting to many bars where run with bar width and spacing stil set, these are now hardcoded to 1 and 0 width is still harcoded to 200 thus preventing user seting > 200 bars --- config.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.c b/config.c index b886900..61ead41 100644 --- a/config.c +++ b/config.c @@ -198,7 +198,9 @@ if (strcmp(outputMethod, "noncurses") == 0) { } if (strcmp(outputMethod, "raw") == 0) {//raw: p->om = 4; - + p->bs = 0; + p->bw = 1; + //checking data format p->is_bin = -1; if (strcmp(p->data_format, "binary") == 0) {