[Fixed][65080a6] Use/Open not functioning

Bugs that have been resolved.

Moderator: Graf Zahl

hetdegon
Posts: 31
Joined: Sat May 10, 2014 23:01

[Fixed][65080a6] Use/Open not functioning

Post by hetdegon »

In current master ( 65080a6) it's impossible to open doors or use switches.

Apparently it's because of the latest optimizations in p_maputl.cpp, like 988. Reverting it from

Code: Select all

if (frac < 0 || frac > 1) continue;	// behind source or beyond end point
to

Code: Select all

 if (frac < 0) continue;	// behind source or beyond end point
makes it work again.
Last edited by hetdegon on Sun Jan 17, 2016 4:17, edited 1 time in total.
Blue Shadow
Global Moderator
Global Moderator
Posts: 308
Joined: Sun Aug 29, 2010 6:09

Re: [ 65080a6] Use/Open not functioning

Post by Blue Shadow »

hetdegon
Posts: 31
Joined: Sat May 10, 2014 23:01

Re: [Fixed][65080a6] Use/Open not functioning

Post by hetdegon »

Ah, thanks for letting me know. I'll mark it as fixed then.

Return to “Closed Bugs”