Removed usage of register keyword
No more 'register storage class specifier is deprecated' warnings
This commit is contained in:
parent
9e016bbfc3
commit
3c044ebd5e
3 changed files with 6 additions and 6 deletions
|
|
@ -1695,9 +1695,9 @@ bool AM_clipMline (mline_t *ml, fline_t *fl)
|
|||
TOP =8
|
||||
};
|
||||
|
||||
register int outcode1 = 0;
|
||||
register int outcode2 = 0;
|
||||
register int outside;
|
||||
int outcode1 = 0;
|
||||
int outcode2 = 0;
|
||||
int outside;
|
||||
|
||||
fpoint_t tmp = { 0, 0 };
|
||||
int dx;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue