From dd4ec4bd2c17441cedfc4a98d1471c5f1ba9ffe7 Mon Sep 17 00:00:00 2001 From: Pere Pujal i Carabantes Date: Sun, 26 Apr 2015 21:41:59 +0200 Subject: [PATCH] Mirror and Flip stamps were not working. --- src/tuxpaint.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index e648aeab8..1943f1285 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -6621,6 +6621,7 @@ SDL_Surface *mirror_surface(SDL_Surface * s) /* Mirror surface: */ new_surf = duplicate_surface(s); + SDL_SetSurfaceBlendMode(s, SDL_BLENDMODE_NONE); if (new_surf != NULL) { @@ -6657,6 +6658,7 @@ SDL_Surface *flip_surface(SDL_Surface * s) /* Flip surface: */ new_surf = duplicate_surface(s); + SDL_SetSurfaceBlendMode(s, SDL_BLENDMODE_NONE); if (new_surf != NULL) {