DOOM64-RE

Doom 64 Reverse Engineering
Log | Files | Refs | README | LICENSE

commit f3792388b43d6fcef087b953f117f4df1bfd261e
parent 1473857cb82a1c08b902beac92ae07d657b70ceb
Author: Erick Vásquez García <41172072+Erick194@users.noreply.github.com>
Date:   Wed, 14 Jun 2023 20:51:34 -0600

Merge pull request #13 from azamorapl/fix-special-8

Fix reinitializing sector number on Stairs_Build special
Diffstat:
Mdoom64/p_floor.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/doom64/p_floor.c b/doom64/p_floor.c @@ -430,6 +430,7 @@ int EV_BuildStairs(line_t *line, stair_e type) // 80013DB0 break; } } while(ok); + secnum = -1; } return rtn; }