From cba7be9a29666e37932db9a557fb755120059f19 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 26 Sep 2020 18:57:00 -0700 Subject: modules/montage: cleanup vestigial stars/pixbounce lookups Once upon a time montage had to skip stars and pixbouce because they crashed. That has since been corrected, but the commit which removed the skips didn't remove the lookups. This removes the leftover lookups. --- src/modules/montage/montage.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/modules/montage/montage.c b/src/modules/montage/montage.c index 2127065..65d47d7 100644 --- a/src/modules/montage/montage.c +++ b/src/modules/montage/montage.c @@ -37,7 +37,7 @@ rototiller_module_t montage_module = { static void * montage_create_context(unsigned ticks, unsigned num_cpus) { - const rototiller_module_t **modules, *rtv_module, *pixbounce_module, *stars_module; + const rototiller_module_t **modules, *rtv_module; size_t n_modules; montage_context_t *ctxt; @@ -55,8 +55,6 @@ static void * montage_create_context(unsigned ticks, unsigned num_cpus) } rtv_module = rototiller_lookup_module("rtv"); - pixbounce_module = rototiller_lookup_module("pixbounce"); - stars_module = rototiller_lookup_module("stars"); for (size_t i = 0; i < n_modules; i++) { const rototiller_module_t *module = modules[i]; -- cgit v1.2.1