From 5e166965bbef426744a4698b9c218944d4627e2c Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Fri, 3 Dec 2021 18:38:14 -0500 Subject: [PATCH] Did I forget to give nonzero alpha? I did uwu --- src/image.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/image.c b/src/image.c index a901290..22ab06f 100644 --- a/src/image.c +++ b/src/image.c @@ -82,10 +82,10 @@ static uint32_t bayer_matrix[256] = { }; static cammy_image_color default_palette[4] = { - { 0, 0, 0, 0 }, - { 87, 87, 87, 0 }, - { 171, 171, 171, 0 }, - { 255, 255, 255, 0 } + { 0, 0, 0, 255 }, + { 87, 87, 87, 255 }, + { 171, 171, 171, 255 }, + { 255, 255, 255, 255 } }; static uint8_t rgb_to_luma(uint8_t r, uint8_t g, uint8_t b) {