mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-28 22:52:45 +00:00
Merge branch 'floatcvt' of https://github.com/rheit/zdoom into floatcvt
This commit is contained in:
commit
da91422e14
1 changed files with 4 additions and 4 deletions
|
@ -470,18 +470,18 @@ public:
|
||||||
normal.X = normal.Y = 0;
|
normal.X = normal.Y = 0;
|
||||||
if (ceiling)
|
if (ceiling)
|
||||||
{
|
{
|
||||||
normal.Z = negiC = 1;
|
normal.Z = -1;
|
||||||
|
negiC = 1;
|
||||||
D = height;
|
D = height;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
normal.Z = negiC = -1;
|
normal.Z = 1;
|
||||||
|
negiC = -1;
|
||||||
D = -height;
|
D = -height;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void SetAtHeight(fixed_t height, int ceiling) = delete;
|
|
||||||
|
|
||||||
bool CopyPlaneIfValid (secplane_t *dest, const secplane_t *opp) const;
|
bool CopyPlaneIfValid (secplane_t *dest, const secplane_t *opp) const;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue