Browse code

Remove unitialised memory.

Andrew Alderwick authored on 01/03/2023 19:23:13
Showing 1 changed files
... ...
@@ -16,7 +16,7 @@ WITH REGARD TO THIS SOFTWARE.
16 16
 
17 17
 UxnScreen uxn_screen;
18 18
 
19
-static Uint8 blending[5][16] = {
19
+static Uint8 blending[4][16] = {
20 20
 	{0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 0, 2, 3, 3, 3, 0},
21 21
 	{0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3},
22 22
 	{1, 2, 3, 1, 1, 2, 3, 1, 1, 2, 3, 1, 1, 2, 3, 1},