Skip to content
Snippets Groups Projects
Commit 2e325359 authored by sphere's avatar sphere
Browse files

Merge branch 'polyvisiblefix' into 'next'

Fix PolyObject visibility/tangibility constants

See merge request STJr/SRB2!1886
parents cef1cc3f 4de3ed0a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment