Mirror and Flip stamps were not working.

This commit is contained in:
Pere Pujal i Carabantes 2015-04-26 21:41:59 +02:00
parent 35f7ebd482
commit dd4ec4bd2c

View file

@ -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)
{