mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- Exhumed: Interpolate doors.
This commit is contained in:
parent
5124c0daec
commit
b034d9e059
1 changed files with 3 additions and 2 deletions
|
@ -857,7 +857,7 @@ void FuncElev(int a, int, int nRun)
|
|||
{
|
||||
// loc_20FC3:
|
||||
int ceilZ = sector[nSector].ceilingz;
|
||||
sectortype *var_28 = §or[nSector];
|
||||
sectortype *cursect = §or[nSector];
|
||||
|
||||
int nZOffset = Elevator[nElev].nCurZOffset;
|
||||
int zVal = Elevator[nElev].zOffsets[nZOffset];
|
||||
|
@ -911,7 +911,8 @@ void FuncElev(int a, int, int nRun)
|
|||
}
|
||||
}
|
||||
|
||||
var_28->ceilingz = ceilZ;
|
||||
StartInterpolation(nSector, Interp_Sect_Ceilingz);
|
||||
cursect->ceilingz = ceilZ;
|
||||
}
|
||||
|
||||
// maybe this doesn't go here?
|
||||
|
|
Loading…
Reference in a new issue