commit b952a2417b3cd5064c8da86069f3035d872cba99
parent a62fce63162237837a97f2176bd6de5f8842066f
Author: neauoire <aliceffekt@gmail.com>
Date: Mon, 18 Dec 2023 17:47:24 -0800
(screen) Fixed issue with blending modes
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)