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
commit 3c044ebd5e
3 changed files with 6 additions and 6 deletions

View file

@ -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++)
{