mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-20 18:01:16 +00:00
Merge branch 'polyvisiblefix' into 'next'
Fix PolyObject visibility/tangibility constants See merge request STJr/SRB2!1886
This commit is contained in:
commit
2e3253592a
1 changed files with 6 additions and 6 deletions
|
@ -296,16 +296,16 @@ typedef struct polywaypointdata_s
|
|||
|
||||
typedef enum
|
||||
{
|
||||
TMPV_NOCHANGE = 1,
|
||||
TMPV_VISIBLE = 1<<1,
|
||||
TMPV_INVISIBLE = 1<<2,
|
||||
TMPV_NOCHANGE = 0,
|
||||
TMPV_VISIBLE = 1,
|
||||
TMPV_INVISIBLE = 2,
|
||||
} textmappolyvisibility_t;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
TMPT_NOCHANGE = 1,
|
||||
TMPT_TANGIBLE = 1<<1,
|
||||
TMPT_INTANGIBLE = 1<<2,
|
||||
TMPT_NOCHANGE = 0,
|
||||
TMPT_TANGIBLE = 1,
|
||||
TMPT_INTANGIBLE = 2,
|
||||
} textmappolytangibility_t;
|
||||
|
||||
// polyobject door types
|
||||
|
|
Loading…
Reference in a new issue