uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit d12b948e828ffb9316723ef1bab38cfdbab6e90d
parent abd7ab403e6453b64a4bb799c1b6de081e9f19db
Author: Andrew Alderwick <andrew@alderwick.co.uk>
Date:   Wed,  1 Mar 2023 19:23:13 +0000

Remove unitialised memory.

Diffstat:
Msrc/devices/screen.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/devices/screen.c b/src/devices/screen.c @@ -16,7 +16,7 @@ WITH REGARD TO THIS SOFTWARE. UxnScreen uxn_screen; -static Uint8 blending[5][16] = { +static Uint8 blending[4][16] = { {0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 0, 2, 3, 3, 3, 0}, {0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3}, {1, 2, 3, 1, 1, 2, 3, 1, 1, 2, 3, 1, 1, 2, 3, 1},