mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-22 03:51:21 +00:00
Use proper bit values for AMLF constants
This commit is contained in:
parent
720318cddc
commit
6f358d2837
1 changed files with 4 additions and 4 deletions
|
@ -1128,10 +1128,10 @@
|
|||
#define SECPART_3D 2
|
||||
|
||||
// For Line_SetAutomapFlags; These are or'd together
|
||||
#define AMLF_Secret 0
|
||||
#define AMLF_DontDraw 1
|
||||
#define AMLF_Mapped 2
|
||||
#define AMLF_Revealed 3
|
||||
#define AMLF_Secret (1 << 0)
|
||||
#define AMLF_DontDraw (1 << 1)
|
||||
#define AMLF_Mapped (1 << 2)
|
||||
#define AMLF_Revealed (1 << 3)
|
||||
|
||||
// For Line_SetAutomapStyle
|
||||
#define AMLS_Default 0
|
||||
|
|
Loading…
Reference in a new issue