Add missing initialization on vertex heights for binary maps.

This commit is contained in:
Nev3r 2020-01-04 23:01:01 +01:00
parent a161bfa619
commit 72f23a1075

View file

@ -846,6 +846,8 @@ static void P_LoadVertices(UINT8 *data)
{
v->x = SHORT(mv->x)<<FRACBITS;
v->y = SHORT(mv->y)<<FRACBITS;
vt->floorzset = vt->ceilingzset = false;
vt->floorz = vt->ceilingz = 0;
}
}