nice fail, bro

This commit is contained in:
tTh 2024-08-15 20:40:01 +02:00
parent d6877097d0
commit f4c3825186

View File

@ -15,9 +15,11 @@
* ix, iy: coordinate of the pixel in this pic. * ix, iy: coordinate of the pixel in this pic.
* op, ox, oy : same things for output picture * op, ox, oy : same things for output picture
*/ */
#define PIXEL_COPY(ip, ix, iy, op, ox, oy) \ #define PIXEL_COPY(ip, ix, iy, op, ox, oy) \
do { \ do { \
\ op->Rpix[oy][x] = ip->Rpix[y][x]; \
op->Gpix[oy][x] = ip->Gpix[y][x]; \
op->Bpix[oy][x] = ip->Bpix[y][x]; \
} while (0) } while (0)
#define SZPIC 5777 #define SZPIC 5777