summaryrefslogtreecommitdiff
path: root/src/til.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-06-09 22:40:06 -0700
committerVito Caputo <vcaputo@pengaru.com>2022-06-10 21:17:22 -0700
commitb437600c820f489049c022d2c4697226cf8d68fc (patch)
treeba115db92719bd707aa7553495278587f1474c33 /src/til.c
parent156bad78f27813934d897518f0d6ea8748be9e47 (diff)
til: add ticks to til_module_context_t
Also wire this up to the til_module_context_new() helper and all its callers. This is in preparation for modules doing more correct delta-T derived animation.
Diffstat (limited to 'src/til.c')
-rw-r--r--src/til.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/til.c b/src/til.c
index b8aecd8..951a398 100644
--- a/src/til.c
+++ b/src/til.c
@@ -234,7 +234,7 @@ int til_module_create_context(const til_module_t *module, unsigned seed, unsigne
n_cpus = til_threads_num_threads(til_threads);
if (!module->create_context)
- context = til_module_context_new(sizeof(til_module_context_t), seed, n_cpus);
+ context = til_module_context_new(sizeof(til_module_context_t), seed, ticks, n_cpus);
else
context = module->create_context(seed, ticks, n_cpus, setup);
© All Rights Reserved