mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 06:53:40 +00:00
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;
|
||||
|
|
|
@ -166,7 +166,7 @@ void MD5Context::Final(BYTE digest[16])
|
|||
void
|
||||
MD5Transform(DWORD buf[4], const DWORD in[16])
|
||||
{
|
||||
register DWORD a, b, c, d;
|
||||
DWORD a, b, c, d;
|
||||
|
||||
a = buf[0];
|
||||
b = buf[1];
|
||||
|
|
|
@ -1861,7 +1861,7 @@ static void P_SpawnScrollers(void)
|
|||
|
||||
switch (special)
|
||||
{
|
||||
register int s;
|
||||
int s;
|
||||
|
||||
case Scroll_Ceiling:
|
||||
{
|
||||
|
@ -2393,7 +2393,7 @@ static void P_SpawnPushers ()
|
|||
{
|
||||
int i;
|
||||
line_t *l = lines;
|
||||
register int s;
|
||||
int s;
|
||||
|
||||
for (i = 0; i < numlines; i++, l++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue