diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-09-05 01:02:25 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-09-05 01:02:25 -0700 |
commit | 57bae7f5d4fe10f65a21b02ac0a6d5b372b9fbb9 (patch) | |
tree | ba0abb57415824098f1f8f1c33a766e147a56672 | |
parent | 12d449822ee41d447c09bcc44d05aa0bbe8aa2a1 (diff) |
modules/flow: bump the counts up a bit
Now that there's threaded rendering, handling larger counts
without bogging down the frame rate on anything remotely modern
is feasible.
-rw-r--r-- | src/modules/flow/flow.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/flow/flow.c b/src/modules/flow/flow.c index 431a839..6f68ad6 100644 --- a/src/modules/flow/flow.c +++ b/src/modules/flow/flow.c @@ -425,9 +425,10 @@ static int flow_setup(const til_settings_t *settings, til_setting_t **res_settin "5000", "10000", "20000", - "30000", "40000", - "50000", + "60000", + "80000", + "100000", NULL }; til_setting_t *speed; |