diff options
| author | lepelog <25211966+lepelog@users.noreply.github.com> | 2022-06-26 22:33:09 +0200 |
|---|---|---|
| committer | lepelog <25211966+lepelog@users.noreply.github.com> | 2022-06-26 22:33:09 +0200 |
| commit | f215e2d649064fdc73bf1e80f5de2999414ef335 (patch) | |
| tree | 18485b3f5fb6b16c550d30950424251a4917053c /include/d/a | |
| parent | faea8747414203590cda033d6a2edb0a3c52d3e9 (diff) | |
more nonmatching
Diffstat (limited to 'include/d/a')
| -rw-r--r-- | include/d/a/d_a_player.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/d/a/d_a_player.h b/include/d/a/d_a_player.h index 64b84b96de..5d19bbbc74 100644 --- a/include/d/a/d_a_player.h +++ b/include/d/a/d_a_player.h @@ -181,7 +181,7 @@ public: enum daPy_FLG0 { FLG0_UNK_40000000 = 0x40000000, EQUIP_HEAVY_BOOTS = 0x2000000, - FLG0_UNK_8000000 = 0x8000000, + PLAYER_NO_DRAW = 0x8000000, FLG0_UNK_1000000 = 0x1000000, UNDER_WATER_MOVEMENT = 0x800000, FLG0_UNK_80000 = 0x80000, @@ -552,6 +552,8 @@ public: BOOL i_checkEquipHeavyBoots() const { return i_checkNoResetFlg0(EQUIP_HEAVY_BOOTS); } BOOL i_checkMagneBootsOn() const { return i_checkNoResetFlg0(MAGNE_BOOTS_ON); } bool i_checkMidnaRide() const { return i_checkNoResetFlg0(MIDNA_RIDE); } + void i_onPlayerNoDraw() { i_onNoResetFlg0(PLAYER_NO_DRAW); } + void i_offPlayerNoDraw() { i_offNoResetFlg0(PLAYER_NO_DRAW); } inline static u32 getLastSceneMode(); inline static bool checkWoodSwordEquip(); |
