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
|
|
@ -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…
Add table
Add a link
Reference in a new issue