d_a_door_push OK (#1959)

* work on d_a_push_door

* d_a_door_push OK

* remove unused asm
This commit is contained in:
Trueffel
2023-10-10 23:43:24 +03:00
committed by GitHub
parent 3fa422caac
commit c5b54dd7ec
35 changed files with 408 additions and 1872 deletions
+4
View File
@@ -222,6 +222,7 @@ public:
FLG0_UNK_4000 = 0x4000,
FLG0_UNK_2000 = 0x2000,
FLG0_MAGNE_BOOTS_ON = 0x1000,
FLG0_PUSH_PULL_KEEP = 0x800,
FLG0_UNK_100 = 0x100,
FLG0_UNK_80 = 0x80,
FLG0_UNK_40 = 0x40,
@@ -764,6 +765,9 @@ public:
bool i_checkMidnaRide() const { return i_checkNoResetFlg0(FLG0_MIDNA_RIDE); }
void i_onPlayerNoDraw() { i_onNoResetFlg0(FLG0_PLAYER_NO_DRAW); }
void i_offPlayerNoDraw() { i_offNoResetFlg0(FLG0_PLAYER_NO_DRAW); }
void i_onPushPullKeep() { i_onNoResetFlg0(FLG0_PUSH_PULL_KEEP); }
void i_offPushPullKeep() { i_offNoResetFlg0(FLG0_PUSH_PULL_KEEP); }
u32 i_checkBoarSingleBattle() const { return i_checkNoResetFlg2(FLG2_BOAR_SINGLE_BATTLE); }