Set max bar count to 65535

Note: This is simply an arbitrarily large value.
This commit is contained in:
Raymond Li 2021-01-25 23:14:40 -05:00 committed by GitHub
parent fd4170b96c
commit c73a65fd9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -262,13 +262,14 @@ pthread_t draw_thread;
// allow you to disable. handy if you use bar with lots of crap.
bool redraw_thread = false;
// experimental bar stuff
#define BAR_VERT 0
#define BAR_FLAT 1
#define BAR_DEFAULT 0
#define BAR_REVERSED 1
#define BAR_BIDIRECTIONAL 2
#define BAR_MAX_COUNT 65536
// experimental bar stuff
#define BAR_MAX_COUNT 65535
bool bar_enabled = false;
double *bar_heights = NULL;
double bar_step = 15;