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

Commit

Permalink
Fixed compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 7, 2011
1 parent 817d1df commit 85ab2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_blit.h
Expand Up @@ -209,7 +209,7 @@ do { \
{ \
Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
((g>>fmt->Gloss)<<fmt->Gshift)| \
((b>>fmt->Bloss)<<fmt->Bshift)|
((b>>fmt->Bloss)<<fmt->Bshift)| \
fmt->Amask; \
}
#define RGB565_FROM_RGB(Pixel, r, g, b) \
Expand Down

0 comments on commit 85ab2f3

Please sign in to comment.