diff options
Diffstat (limited to 'src/sdl2graphics.cpp')
-rw-r--r-- | src/sdl2graphics.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sdl2graphics.cpp b/src/sdl2graphics.cpp index 09b52470b..6d6a745ec 100644 --- a/src/sdl2graphics.cpp +++ b/src/sdl2graphics.cpp @@ -44,8 +44,9 @@ int MSDL_gfxBlitRGBA(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) { - return 0; -// return SDL_gfxBlitRGBA(src, srcrect, dst, dstrect); + SDL_SetSurfaceBlendMode (src, SDL_BLENDMODE_BLEND); + SDL_BlitSurface(src, srcrect, dst, dstrect); + return 1; } #if SDL_BYTEORDER == SDL_LIL_ENDIAN |