Code in variable declarations. Yuck. *thwaps taniwha*

This commit is contained in:
Ragnvald Maartmann-Moe IV 2002-08-25 16:51:30 +00:00
parent ddb90e1acd
commit e2e605841f
1 changed files with 1 additions and 1 deletions

View File

@ -110,8 +110,8 @@ Mod_FloodFillSkin (byte * skin, int skinwidth, int skinheight)
inpt = (inpt + 1) & FLOODFILL_FIFO_MASK;
while (outpt != inpt) {
byte *pos = &skin[x + skinwidth * y];
int x = fifo[outpt].x, y = fifo[outpt].y, fdc = filledcolor;
byte *pos = &skin[x + skinwidth * y];
outpt = (outpt + 1) & FLOODFILL_FIFO_MASK;