summaryrefslogtreecommitdiff
path: root/src/modules/pixbounce/pixbounce.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-05-11 12:48:42 -0700
committerVito Caputo <vcaputo@pengaru.com>2023-05-11 15:19:25 -0700
commit2b9eca8724fe6c5e0f6a4438cd398b5978283131 (patch)
tree6e78ff7b7269926ddda6eb944cc2c97237e11b97 /src/modules/pixbounce/pixbounce.c
parentcaa75150ab4982c5ca0e48e606dd4f81087e7a3d (diff)
modules/*: remove use of static default setups
There was a time when it made sense for context creates needing setups but not receiving them to still be functional with some sane defaults. But with recursive settings, we really shouldn't ever have orphaned nested module uses unreachable by a proper setup. So let's just get rid of this fallback, and exclusively rely on the baked setups provided by the .setup() methods. They still have preferred defaults, and the proper setup production machinery is what should be responsible for applying those at runtime where they may also be overridden or otherwise influenced.
Diffstat (limited to 'src/modules/pixbounce/pixbounce.c')
-rw-r--r--src/modules/pixbounce/pixbounce.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/pixbounce/pixbounce.c b/src/modules/pixbounce/pixbounce.c
index 6f7502c..79826ce 100644
--- a/src/modules/pixbounce/pixbounce.c
+++ b/src/modules/pixbounce/pixbounce.c
@@ -27,11 +27,6 @@ typedef struct pixbounce_setup_t {
pixbounce_pixmaps_t pixmap;
} pixbounce_setup_t;
-static pixbounce_setup_t pixbounce_default_setup = {
- .pixmap_size = DEFAULT_PIXMAP_SIZE,
- .pixmap = DEFAULT_PIXMAP
-};
-
typedef struct pixbounce_pixmap_t {
int width, height;
int pix_map[34*35];
© All Rights Reserved