DOOM64-RE

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

commit fb1c1f9308424748e0bab1b95c9ad7543baf040c
parent 6e19603cf78a38f1a2b7292419aeb67733c06410
Author: azamorapl <adolfo.zamorapl@gmail.com>
Date:   Sun,  4 Jun 2023 23:21:21 -0500

Fix reinitializing sector number on Stairs_Build special

This fixes some stairs on Even Simpler not raising
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; }