0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/SRB2.git synced 2025-03-22 10:52:23 +00:00

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