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
1 changed files with 4 additions and 4 deletions

View File

@ -470,18 +470,18 @@ public:
normal.X = normal.Y = 0;
if (ceiling)
{
normal.Z = negiC = 1;
normal.Z = -1;
negiC = 1;
D = height;
}
else
{
normal.Z = negiC = -1;
normal.Z = 1;
negiC = -1;
D = -height;
}
}
inline void SetAtHeight(fixed_t height, int ceiling) = delete;
bool CopyPlaneIfValid (secplane_t *dest, const secplane_t *opp) const;
};