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
+1 -1
View File
@@ -1604,7 +1604,7 @@ RageDisplay::PixelFormat RageDisplay_OGL::GetImgPixelFormat( RageSurface* &img,
RageSurface *imgconv = CreateSurface( width, height,
pfd->bpp, pfd->masks[0], pfd->masks[1], pfd->masks[2], pfd->masks[3] );
RageSurfaceUtils::Blit( img, imgconv, width, height, false );
RageSurfaceUtils::Blit( img, imgconv, width, height );
img = imgconv;
FreeImg = true;
}