remove unused ckey parameter to RageSurfaceUtils::Blit

This commit is contained in:
Glenn Maynard
2004-08-31 01:15:12 +00:00
parent 04c9401034
commit bb90bca544
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -141,7 +141,7 @@ void RageSurfaceUtils::CopySurface( RageSurface *src, RageSurface *dest )
*dest->fmt.palette = *src->fmt.palette;
}
Blit( src, dest, -1, -1, false );
Blit( src, dest, -1, -1 );
}
bool RageSurfaceUtils::ConvertSurface( RageSurface *src, RageSurface *&dst,
@@ -582,7 +582,7 @@ static void blit_generic( RageSurface *src_surf, const RageSurface *dst_surf, in
}
/* Blit src onto dst. */
void RageSurfaceUtils::Blit( RageSurface *src, RageSurface *dst, int width, int height, bool ckey )
void RageSurfaceUtils::Blit( RageSurface *src, RageSurface *dst, int width, int height )
{
if(width == -1)
width = src->w;