mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-02 22:14:33 +00:00
Defines for flags passed to Actor_UpdateBgCheckInfo
(#1127)
* Tool-assisted flags for `Actor_UpdateBgCheckInfo` * Manual flags separation * Run formatter * Light doc on the flags * `UPDBGCHECKINFOFLAG_` -> `UPDBGCHECKINFO_FLAG_` (what an improvement!) * Run formatter * Run formatter
This commit is contained in:
parent
85ce3d3ca4
commit
b9cc31dc74
183 changed files with 459 additions and 255 deletions
|
@ -354,4 +354,13 @@ typedef enum {
|
|||
DOORLOCK_NORMAL_SPIRIT
|
||||
} DoorLockType;
|
||||
|
||||
#define UPDBGCHECKINFO_FLAG_0 (1 << 0) // check wall
|
||||
#define UPDBGCHECKINFO_FLAG_1 (1 << 1) // check ceiling
|
||||
#define UPDBGCHECKINFO_FLAG_2 (1 << 2) // check floor and water
|
||||
#define UPDBGCHECKINFO_FLAG_3 (1 << 3)
|
||||
#define UPDBGCHECKINFO_FLAG_4 (1 << 4)
|
||||
#define UPDBGCHECKINFO_FLAG_5 (1 << 5) // unused
|
||||
#define UPDBGCHECKINFO_FLAG_6 (1 << 6) // disable water ripples
|
||||
#define UPDBGCHECKINFO_FLAG_7 (1 << 7) // alternate wall check?
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue