Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed bug picking blitters
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 6, 2008
1 parent 8d0d5b4 commit 901750a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_blit.c
Expand Up @@ -173,7 +173,7 @@ SDL_ChooseBlitFunc(Uint32 src_format, Uint32 dst_format, int flags,

/* Check modulation flags */
flagcheck =
(flags & (SDL_COPY_MODULATE_COLOR | SDL_COPY_MODULATE_COLOR));
(flags & (SDL_COPY_MODULATE_COLOR | SDL_COPY_MODULATE_ALPHA));
if ((flagcheck & entries[i].flags) != flagcheck) {
continue;
}
Expand Down

0 comments on commit 901750a

Please sign in to comment.