mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +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;
|
inpt = (inpt + 1) & FLOODFILL_FIFO_MASK;
|
||||||
|
|
||||||
while (outpt != inpt) {
|
while (outpt != inpt) {
|
||||||
byte *pos = &skin[x + skinwidth * y];
|
|
||||||
int x = fifo[outpt].x, y = fifo[outpt].y, fdc = filledcolor;
|
int x = fifo[outpt].x, y = fifo[outpt].y, fdc = filledcolor;
|
||||||
|
byte *pos = &skin[x + skinwidth * y];
|
||||||
|
|
||||||
outpt = (outpt + 1) & FLOODFILL_FIFO_MASK;
|
outpt = (outpt + 1) & FLOODFILL_FIFO_MASK;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue