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
master
karlstav 7 years ago
parent 45478b2f27
commit 29fb506f48
  1. 4
      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) {

Loading…
Cancel
Save