diff options
author | Adam Jimerson <vendion@gmail.com> | 2021-08-08 05:20:17 -0700 |
---|---|---|
committer | Neel Chauhan <nc@FreeBSD.org> | 2021-08-08 05:26:02 -0700 |
commit | 2e7aa6f0683d9aba8fc0cb3460f380098f4ab98f (patch) | |
tree | 42afc8095cd153949af3ab1d2cd515d01d87937c /audio/cava/files/patch-config.c | |
parent | x11/dwmblocks: Modular status bar for dwm (diff) |
audio/cava: Update to 0.7.4
PR: 257645
Diffstat (limited to 'audio/cava/files/patch-config.c')
-rw-r--r-- | audio/cava/files/patch-config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/cava/files/patch-config.c b/audio/cava/files/patch-config.c index 9979b6579a75..6d35fe5f5497 100644 --- a/audio/cava/files/patch-config.c +++ b/audio/cava/files/patch-config.c @@ -1,18 +1,18 @@ Remove noncurses output method which only produces a garbled mess on terminals. ---- config.c.orig 2020-10-29 12:33:01 UTC +--- config.c.orig 2021-08-02 22:27:47 UTC +++ config.c @@ -181,10 +181,6 @@ bool validate_config(struct config_params *p, struct e return false; #endif } - if (strcmp(outputMethod, "noncurses") == 0) { -- p->om = OUTPUT_NONCURSES; +- p->output = OUTPUT_NONCURSES; - p->bgcol = 0; - } if (strcmp(outputMethod, "raw") == 0) { // raw: - p->om = OUTPUT_RAW; + p->output = OUTPUT_RAW; p->bar_spacing = 0; @@ -220,7 +216,7 @@ bool validate_config(struct config_params *p, struct e #ifndef NCURSES |