diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-07-20 11:28:48 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-07-20 11:28:48 -0700 |
commit | ebc59625f2fb8d63f0aaa6a519fb795b101e6003 (patch) | |
tree | ceaf3592463225c24d62cadca859046e6caeedab | |
parent | cbeb9d829b025428d910956f3d6208e7886582cd (diff) |
modules/flui2d: fix clockstep value to match default
Due to how the values get matched as strings this extraneous 0
was interfering with FLUI2D_DEFAULT_CLOCKSTEP actually matching
anything.
-rw-r--r-- | src/modules/flui2d/flui2d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/flui2d/flui2d.c b/src/modules/flui2d/flui2d.c index ecf3e84..cb249c3 100644 --- a/src/modules/flui2d/flui2d.c +++ b/src/modules/flui2d/flui2d.c @@ -415,7 +415,7 @@ static int flui2d_setup(const til_settings_t *settings, til_setting_t **res_sett ".1", ".25", ".33", - ".50", + ".5", ".66", ".75", ".99", |