- removed the unused x and y parameters from DrawTextureParms.

This commit is contained in:
Christoph Oelckers 2016-04-09 12:59:50 +02:00
commit e2ae7d8f5d
4 changed files with 6 additions and 6 deletions

View file

@ -116,10 +116,10 @@ void STACK_ARGS DCanvas::DrawTexture (FTexture *img, double x, double y, int tag
{
return;
}
DrawTextureParms(img, x, y, parms);
DrawTextureParms(img, parms);
}
void DCanvas::DrawTextureParms(FTexture *img, double x, double y, DrawParms &parms)
void DCanvas::DrawTextureParms(FTexture *img, DrawParms &parms)
{
#ifndef NO_SWRENDER
FTexture::Span unmaskedSpan[2];