gdi32: Don't bother using the register storage class specifier.
This commit is contained in:
parent
8a7cc0687c
commit
f824030a49
|
@ -2616,9 +2616,9 @@ static void REGION_loadAET(EdgeTableEntry *AET, EdgeTableEntry *ETEs)
|
||||||
*/
|
*/
|
||||||
static void REGION_computeWAET(EdgeTableEntry *AET)
|
static void REGION_computeWAET(EdgeTableEntry *AET)
|
||||||
{
|
{
|
||||||
register EdgeTableEntry *pWETE;
|
EdgeTableEntry *pWETE;
|
||||||
register int inside = 1;
|
int inside = 1;
|
||||||
register int isInside = 0;
|
int isInside = 0;
|
||||||
|
|
||||||
AET->nextWETE = NULL;
|
AET->nextWETE = NULL;
|
||||||
pWETE = AET;
|
pWETE = AET;
|
||||||
|
|
Loading…
Reference in New Issue