From b952a2417b3cd5064c8da86069f3035d872cba99 Mon Sep 17 00:00:00 2001 From: neauoire Date: Mon, 18 Dec 2023 17:47:24 -0800 Subject: [PATCH] (screen) Fixed issue with blending modes --- src/devices/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/screen.c b/src/devices/screen.c index 1a1c590..733eae5 100644 --- a/src/devices/screen.c +++ b/src/devices/screen.c @@ -24,7 +24,7 @@ static Uint8 blending[][16] = { {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}, {2, 3, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2}, - {1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0}}; + {0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0}}; void screen_change(Uint16 x1, Uint16 y1, Uint16 x2, Uint16 y2)