extern void get_custom_topedge (int *x, int *y, bool max);
extern void get_custom_raw_limits (int *pw, int *ph, int *pdx, int *pdy);
void get_custom_mouse_limits (int *pw, int *ph, int *pdx, int *pdy, int dbl);
-extern void putpixel (uae_u8 *buf, int bpp, int x, xcolnr c8, int opaq);
+extern void putpixel (uae_u8 *buf, uae_u8 *genlockbuf, int bpp, int x, xcolnr c8, int opaq);
extern void allocvidbuffer (struct vidbuffer *buf, int width, int height, int depth);
extern void freevidbuffer (struct vidbuffer *buf);
extern void check_prefs_picasso(void);
numptr = numbers + num * TD_NUM_WIDTH + NUMBERS_NUM * TD_NUM_WIDTH * y;
for (j = 0; j < TD_NUM_WIDTH; j++) {
if (*numptr == 'x')
- putpixel (buf, bpp, x + j, c1, 1);
+ putpixel (buf, NULL, bpp, x + j, c1, 1);
else if (*numptr == '+')
- putpixel (buf, bpp, x + j, c2, 0);
+ putpixel (buf, NULL, bpp, x + j, c2, 0);
numptr++;
}
}
x = x_start + pos * TD_WIDTH;
if (!border)
- putpixel (buf, bpp, x - 1, cb, 0);
+ putpixel (buf, NULL, bpp, x - 1, cb, 0);
for (j = 0; j < TD_LED_WIDTH; j++)
- putpixel (buf, bpp, x + j, c, 0);
+ putpixel (buf, NULL, bpp, x + j, c, 0);
if (!border)
- putpixel (buf, bpp, x + j, cb, 0);
+ putpixel (buf, NULL, bpp, x + j, cb, 0);
if (y >= TD_PADY && y - TD_PADY < TD_NUM_HEIGHT) {
if (num3 >= 0) {