commit e929ecc
Devine Lu Linvega
·
2026-01-10 03:10:35 +0000 UTC
parent 481f1f2
Removed unused
1 files changed,
+0,
-3
+0,
-3
1@@ -609,9 +609,7 @@ screen_deo_sprite(void)
2 const int stride = screen_wmar2;
3 const int dx = flipx ? -rDY : rDY;
4 const int dy = flipy ? -rDX : rDX;
5- const int qfx = flipx ? 0 : 7;
6 const int qfy = flipy ? 7 : 0;
7- const int qx_step = flipx ? 1 : -1;
8 const int src_stride = flipy ? -1 : 1;
9 for(i = 0; i <= rML; i++, x += dx, y += dy, rA += addr_incr) {
10 const Uint16 x0 = x + 8, y0 = y + 8;
11@@ -620,7 +618,6 @@ screen_deo_sprite(void)
12 const Uint8 *src = &ram[rA + qfy];
13 for(j = 0; j < 8; j++, dst += stride, src += src_stride) {
14 const int ch1 = *src, ch2 = is_2bpp ? (src[8] << 1) : 0;
15- int qx = qfx;
16 Uint8 *d = dst;
17 Uint8 bit = flipx ? 0x01 : 0x80;
18 if(flipx)