commit 9100a6a
Devine Lu Linvega
·
2024-12-16 17:20:33 +0000 UTC
parent ad89edd
(screen) Fixed issue with clearing changed pixels
1 files changed,
+1,
-1
+1,
-1
1@@ -258,7 +258,7 @@ screen_deo(Uint8 addr)
2 y1 = y, y2 = rY;
3 else
4 y1 = rY, y2 = y;
5- screen_change(x1, y1, x2 + 8, y2 + 8);
6+ screen_change(x1 - 8, y1 - 8, x2 + 8, y2 + 8);
7 if(rMX) rX += rDX * fx;
8 if(rMY) rY += rDY * fy;
9 return;