summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-09-26 18:57:00 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-09-26 18:57:00 -0700
commitcba7be9a29666e37932db9a557fb755120059f19 (patch)
tree6d8f2475b4f3170b222c3b3229f0ca8c485d7b64 /src
parentf5ef810bac18a3443d1a2cf62a16a1c72f25b08a (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/modules/montage/montage.c4
1 files changed, 1 insertions, 3 deletions
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];
© All Rights Reserved