diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-08-12 16:30:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-12 16:30:44 -0400 |
| commit | 2eaf012e4f8749bf83a6dc00cf1900f64663a33f (patch) | |
| tree | e4b512b394015bb6ab04946c0b59f37c7f3066a2 /include/d/actor/d_a_player.h | |
| parent | c5878bf0687e54c23f72e72a1514fe7221b1350e (diff) | |
Fix some version differences (#852)
* Fix some version differences
* Found real inline name for checkBowMiniGame
Diffstat (limited to 'include/d/actor/d_a_player.h')
| -rw-r--r-- | include/d/actor/d_a_player.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/d/actor/d_a_player.h b/include/d/actor/d_a_player.h index 4e684934..4d7139d6 100644 --- a/include/d/actor/d_a_player.h +++ b/include/d/actor/d_a_player.h @@ -98,7 +98,7 @@ public: /* 0x041 */ DEMO_FOODSET_e = 65, /* 0x042 */ DEMO_SWAIT_e = 66, /* 0x043 */ DEMO_PWAIT_067_e = 67, - /* 0x044 */ DEMO_UNK_068_e = 68, + /* 0x044 */ DEMO_BOW_MINIGAME_e = 68, /* 0x045 */ DEMO_SHIPSIT_e = 69, /* 0x046 */ DEMO_UNK_070_e = 70, /* 0x047 */ DEMO_SHIPOFF_e = 71, @@ -551,7 +551,7 @@ public: void setFace(daPy_FACE face) { mFace = face; } BOOL checkSwordMiniGame() const { return dComIfGp_getMiniGameType() == 2; } - void checkBowMiniGame() const {} + BOOL checkBowMiniGame() const { return mDemo.getDemoMode() == daPy_demo_c::DEMO_BOW_MINIGAME_e; } void checkSoupPowerUp() const {} void checkSubjectAccept() const {} void getRopeJumpLand() const {} |
