Merge branch 'floatcvt' of https://github.com/rheit/zdoom into floatcvt

This commit is contained in:
Christoph Oelckers 2016-04-04 12:25:24 +02:00
commit da91422e14

View file

@ -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;
}; };