Fixed signed/unsigned warning
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@995 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -158,10 +158,10 @@ void TFB_BlitSurface (SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst,
|
|||||||
SDL_Rect *dstrect, int blend_numer, int blend_denom)
|
SDL_Rect *dstrect, int blend_numer, int blend_denom)
|
||||||
{
|
{
|
||||||
BOOLEAN has_colorkey;
|
BOOLEAN has_colorkey;
|
||||||
int x, y, x1, y1, x2, y2, dst_x2, dst_y2, colorkey, nr, ng, nb;
|
int x, y, x1, y1, x2, y2, dst_x2, dst_y2, nr, ng, nb;
|
||||||
int srcx, srcy, w, h;
|
int srcx, srcy, w, h;
|
||||||
Uint8 sr, sg, sb, dr, dg, db;
|
Uint8 sr, sg, sb, dr, dg, db;
|
||||||
Uint32 src_pixval, dst_pixval;
|
Uint32 src_pixval, dst_pixval, colorkey;
|
||||||
GetPixelFn src_getpix, dst_getpix;
|
GetPixelFn src_getpix, dst_getpix;
|
||||||
PutPixelFn putpix;
|
PutPixelFn putpix;
|
||||||
SDL_Rect fulldst;
|
SDL_Rect fulldst;
|
||||||
|
|||||||
Reference in New Issue
Block a user