commit 66141cd
Devine Lu Linvega
·
2025-12-31 04:15:40 +0000 UTC
parent 2a92382
Format
1 files changed,
+2,
-2
+2,
-2
1@@ -617,10 +617,10 @@ screen_draw_sprite(void)
2 Uint8 *dst = &screen_layers[xmar + ymar * screen_wmar2];
3 Uint8 *sch1 = &ram[rA + qfy], *sch2 = sch1 + 8;
4 if(opaque)
5- for(row = 0; row < 8; row++, dst += screen_wmar2, sch1 += fy, sch2 += fy)
6+ for(row = 0; row < 8; row++, dst += screen_wmar2, sch1 += fy, sch2 += fy)
7 PUT_PIXELS(n, 1, 1, *sch1, *sch2 << 1)
8 else
9- for(row = 0; row < 8; row++, dst += screen_wmar2, sch1 += fy, sch2 += fy)
10+ for(row = 0; row < 8; row++, dst += screen_wmar2, sch1 += fy, sch2 += fy)
11 PUT_PIXELS(n, 0, 1, *sch1, *sch2 << 1)
12 }
13 }