From bd6083fb20ada4b55c26696266bff1fb651c2901 Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Mon, 29 Sep 2003 01:20:58 +0000 Subject: [PATCH] Bug in mirror + flip of stamp. (Wrong variable!) --- src/tuxpaint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 0a200df21..fb267c03e 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -5767,7 +5767,7 @@ void draw_stamps(void) src.h = 1; dest.x = base_x + img->w - xx - 1; - dest.y = base_y + img->h - xx - 1; + dest.y = base_y + img->h - yy - 1; SDL_BlitSurface(img, &src, screen, &dest); }