mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 04:21:23 +00:00
Update src/p_map.c
it seems line_t have pointers, clear all of it
This commit is contained in:
parent
98fd34e76c
commit
8533955da8
1 changed files with 1 additions and 1 deletions
|
@ -3732,7 +3732,7 @@ void P_SlideMove(mobj_t *mo)
|
|||
vertex_t v1, v2; // fake vertexes
|
||||
static line_t junk; // fake linedef
|
||||
|
||||
memset(&junk, 1, sizeof(junk));
|
||||
memset(&junk, 0x00, sizeof(junk));
|
||||
|
||||
if (tmhitthing && mo->z + mo->height > tmhitthing->z && mo->z < tmhitthing->z + tmhitthing->height)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue