forked from github/server
processing changes fixed again.
This commit is contained in:
parent
98c2524e89
commit
faf95b2c43
|
@ -3836,16 +3836,12 @@ process(void)
|
||||||
}
|
}
|
||||||
porder = porder->next;
|
porder = porder->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* this is where the region post-processig will start: */
|
|
||||||
pregion = porder;
|
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
/* in case there weren't any units, move the pregion pointer over the unit/order tasks */
|
|
||||||
while (pregion && pregion->priority==prio && pregion->type!=PR_REGION_POST) {
|
while (pregion && pregion->priority==prio && pregion->type!=PR_REGION_POST) {
|
||||||
pregion = pregion->next;
|
pregion = pregion->next;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
while (pregion && pregion->priority==prio && pregion->type==PR_REGION_POST) {
|
while (pregion && pregion->priority==prio && pregion->type==PR_REGION_POST) {
|
||||||
pregion->data.per_region.process(r);
|
pregion->data.per_region.process(r);
|
||||||
|
|
Loading…
Reference in New Issue