mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +00:00
- Fixed: The sight checking code didn't initialize the myseethrough variable.
SVN r1363 (trunk)
This commit is contained in:
parent
036deb1ae6
commit
c5ca865a7f
2 changed files with 2 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
January 24, 2009 (Changes by Graf Zahl)
|
January 24, 2009 (Changes by Graf Zahl)
|
||||||
|
- Fixed: The sight checking code didn't initialize the myseethrough variable.
|
||||||
- Fixed: With COMPAT_TRACE switched on linedef actions on lines having
|
- Fixed: With COMPAT_TRACE switched on linedef actions on lines having
|
||||||
the same sector on both sides were not triggered.
|
the same sector on both sides were not triggered.
|
||||||
|
|
||||||
|
|
|
@ -76,6 +76,7 @@ public:
|
||||||
|
|
||||||
SeePastBlockEverything = flags & 6;
|
SeePastBlockEverything = flags & 6;
|
||||||
SeePastShootableLines = flags & 4;
|
SeePastShootableLines = flags & 4;
|
||||||
|
myseethrough = FF_SEETHROUGH;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue