Removed usage of register keyword

No more 'register storage class specifier is deprecated' warnings
This commit is contained in:
alexey.lysiuk 2016-02-27 15:03:44 +02:00
parent 9e016bbfc3
commit 3c044ebd5e
3 changed files with 6 additions and 6 deletions

View file

@ -1695,9 +1695,9 @@ bool AM_clipMline (mline_t *ml, fline_t *fl)
TOP =8 TOP =8
}; };
register int outcode1 = 0; int outcode1 = 0;
register int outcode2 = 0; int outcode2 = 0;
register int outside; int outside;
fpoint_t tmp = { 0, 0 }; fpoint_t tmp = { 0, 0 };
int dx; int dx;

View file

@ -166,7 +166,7 @@ void MD5Context::Final(BYTE digest[16])
void void
MD5Transform(DWORD buf[4], const DWORD in[16]) MD5Transform(DWORD buf[4], const DWORD in[16])
{ {
register DWORD a, b, c, d; DWORD a, b, c, d;
a = buf[0]; a = buf[0];
b = buf[1]; b = buf[1];

View file

@ -1861,7 +1861,7 @@ static void P_SpawnScrollers(void)
switch (special) switch (special)
{ {
register int s; int s;
case Scroll_Ceiling: case Scroll_Ceiling:
{ {
@ -2393,7 +2393,7 @@ static void P_SpawnPushers ()
{ {
int i; int i;
line_t *l = lines; line_t *l = lines;
register int s; int s;
for (i = 0; i < numlines; i++, l++) for (i = 0; i < numlines; i++, l++)
{ {