Skip to content

Commit

Permalink
Fix MF_FRIEND flag being on 33rd bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
doomhack committed Oct 20, 2019
1 parent f5a9132 commit 3f32a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/p_mobj.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
// Translucent sprite? // phares
#define MF_TRANSLUCENT (unsigned int)(0x0000000040000000)

#define MF_FRIEND (unsigned int)(0x0000000100000000)
#define MF_FRIEND (unsigned int)(0x0000000080000000)

// killough 9/15/98: Same, but internal flags, not intended for .deh
// (some degree of opaqueness is good, to avoid compatibility woes)
Expand Down

0 comments on commit 3f32a09

Please sign in to comment.