From b437600c820f489049c022d2c4697226cf8d68fc Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 9 Jun 2022 22:40:06 -0700 Subject: 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. --- src/modules/checkers/checkers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/checkers/checkers.c') diff --git a/src/modules/checkers/checkers.c b/src/modules/checkers/checkers.c index 079df4d..c9a0444 100644 --- a/src/modules/checkers/checkers.c +++ b/src/modules/checkers/checkers.c @@ -70,7 +70,7 @@ static til_module_context_t * checkers_create_context(unsigned seed, unsigned ti if (!setup) setup = &checkers_default_setup.til_setup; - ctxt = til_module_context_new(sizeof(checkers_context_t), seed, n_cpus); + ctxt = til_module_context_new(sizeof(checkers_context_t), ticks, seed, n_cpus); if (!ctxt) return NULL; -- cgit v1.2.1