- 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

@ -2762,11 +2762,11 @@ void D3DFB::DrawPixel(int x, int y, int palcolor, uint32 color)
//
//==========================================================================
void D3DFB::DrawTextureParms (FTexture *img, double x, double y, DrawParms &parms)
void D3DFB::DrawTextureParms (FTexture *img, DrawParms &parms)
{
if (In2D < 2)
{
Super::DrawTextureParms(img, x, y, parms);
Super::DrawTextureParms(img, parms);
return;
}
if (!InScene)