mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 12:30:40 +00:00
- delete set_int_floorz and set_int_ceilingz.
This commit is contained in:
parent
81456e4d33
commit
0655db77b9
1 changed files with 0 additions and 5 deletions
|
@ -231,8 +231,6 @@ struct sectortype
|
|||
const double floorz, ceilingz;
|
||||
sectortype(double a = 0, double b = 0) : ceilingz(a), floorz(b) {}
|
||||
|
||||
void set_int_ceilingz(int cc, bool temp = false) {}
|
||||
void set_int_floorz(int cc, bool temp = false) {}
|
||||
|
||||
#else
|
||||
// Do not change directly!
|
||||
|
@ -243,9 +241,6 @@ struct sectortype
|
|||
void addceilingz(double cc, bool temp = false);
|
||||
void addfloorz(double cc, bool temp = false);
|
||||
|
||||
void set_int_ceilingz(int cc, bool temp = false) { setceilingz(cc * zinttoworld, temp); }
|
||||
void set_int_floorz(int cc, bool temp = false) { setfloorz(cc * zinttoworld, temp); }
|
||||
|
||||
void setzfrommap(int c, int f)
|
||||
{
|
||||
ceilingz = c * zmaptoworld;
|
||||
|
|
Loading…
Reference in a new issue