mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-19 07:31:03 +00:00
- fixed compilation
This commit is contained in:
parent
47df8ed855
commit
7e5c3e066c
1 changed files with 4 additions and 4 deletions
|
@ -735,7 +735,7 @@ void G_OperateSectors(int sectNum, int spriteNum)
|
|||
i = nextsectorneighborz(sectNum,pSector->floorz,1,-1);
|
||||
if (i == -1)
|
||||
{
|
||||
OSD_Printf("ST_16_PLATFORM_DOWN/ST_17_PLATFORM_UP: bad neighbor for sector %d!\n", sectNum);
|
||||
Printf("ST_16_PLATFORM_DOWN/ST_17_PLATFORM_UP: bad neighbor for sector %d!\n", sectNum);
|
||||
return;
|
||||
}
|
||||
j = sector[i].floorz;
|
||||
|
@ -765,7 +765,7 @@ void G_OperateSectors(int sectNum, int spriteNum)
|
|||
|
||||
if (i == -1)
|
||||
{
|
||||
OSD_Printf("ST_18_ELEVATOR_DOWN/ST_19_ELEVATOR_UP: bad neighbor for sector %d!\n", sectNum);
|
||||
Printf("ST_18_ELEVATOR_DOWN/ST_19_ELEVATOR_UP: bad neighbor for sector %d!\n", sectNum);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -865,7 +865,7 @@ REDODOOR:
|
|||
j = nextsectorneighborz(sectNum, pSector->ceilingz, 1, 1);
|
||||
if (j == -1)
|
||||
{
|
||||
OSD_Printf("ST_21_FLOOR_DOOR: bad neighbor for sector %d!\n", sectNum);
|
||||
Printf("ST_21_FLOOR_DOOR: bad neighbor for sector %d!\n", sectNum);
|
||||
return;
|
||||
}
|
||||
g_animateGoal[i] = sector[j].floorz;
|
||||
|
@ -879,7 +879,7 @@ REDODOOR:
|
|||
i = nextsectorneighborz(sectNum, pSector->ceilingz, 1, 1);
|
||||
if (i == -1)
|
||||
{
|
||||
OSD_Printf("ST_21_FLOOR_DOOR: bad neighbor for sector %d!\n", sectNum);
|
||||
Printf("ST_21_FLOOR_DOOR: bad neighbor for sector %d!\n", sectNum);
|
||||
return;
|
||||
}
|
||||
j = sector[i].floorz;
|
||||
|
|
Loading…
Reference in a new issue