mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Code in variable declarations. Yuck. *thwaps taniwha*
This commit is contained in:
parent
ddb90e1acd
commit
e2e605841f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue