commit b244782

Devine Lu Linvega  ·  2026-01-08 01:06:57 +0000 UTC
parent b36167d
Reverted that silly idea..
1 files changed,  +1, -2
+1, -2
 1@@ -628,8 +628,7 @@ screen_deo_sprite(void)
 2 		Uint8 *dst = &screen_layers[x0 + y0 * stride];
 3 		const Uint8 *sch1 = &ram[rA + qfy];
 4 		const Uint8 *sch2 = is_2bpp ? sch1 + 8 : NULL;
 5-		for(row = 0; row < 8; row++, dst += stride, sch1 += fy) {
 6-			if(sch2) sch2 += fy;
 7+		for(row = 0; row < 8; row++, dst += stride, sch1 += fy, sch2 += fy) {
 8 			int qx = qfx;
 9 			const int ch1 = *sch1, ch2 = is_2bpp ? (*sch2 << 1) : 0;
10 			for(px = 0; px < 8; px++, qx -= fx) {