diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-11-25 15:29:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-25 22:29:44 +0200 |
| commit | 7ca9ef46dbfd335fa67ee5c5099816d7f6ba564f (patch) | |
| tree | ad55121784e481f2f86e0fe1b4bcbd97279b8c4b /include | |
| parent | 9943a52a79d8cd9b8abfcb4a70e783bcb464f42f (diff) | |
d_a_mg_rod equivalent (#2865)
Diffstat (limited to 'include')
| -rw-r--r-- | include/d/actor/d_a_alink.h | 1 | ||||
| -rw-r--r-- | include/d/actor/d_a_player.h | 1 | ||||
| -rw-r--r-- | include/d/d_save.h | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/d/actor/d_a_alink.h b/include/d/actor/d_a_alink.h index c6eeac089d..37c96e69bc 100644 --- a/include/d/actor/d_a_alink.h +++ b/include/d/actor/d_a_alink.h @@ -3578,7 +3578,6 @@ public: void setFishingArm1Angle(const csXyz& i_angle) { mFishingArm1Angle = i_angle; } void setFishingArm2Angle(const csXyz& i_angle) { field_0x3160 = i_angle; } - void onFishingRodCastingEnd() { onNoResetFlg1(FLG1_UNK_8000); } void endFishingCastWait() { offNoResetFlg2(FLG2_UNK_20000000); } void startFishingCastWait() { diff --git a/include/d/actor/d_a_player.h b/include/d/actor/d_a_player.h index 634eb245e0..84f34c80c3 100644 --- a/include/d/actor/d_a_player.h +++ b/include/d/actor/d_a_player.h @@ -955,6 +955,7 @@ public: void onPortalWarpMidnaAtnKeep() { onEndResetFlg2(ERFLG2_PORTAL_WARP_MIDNA_ATN_KEEP); } void onFogFade() { onNoResetFlg2(FLG2_UNK_4000); } void onDkCaught2() { onNoResetFlg0(FLG0_DK_CAUGHT); } + void onFishingRodCastingEnd() { onNoResetFlg1(FLG1_UNK_8000); } void onFishingRodReelEnd() { onEndResetFlg0(ERFLG0_UNK_20000); } void onFishingHit() { onEndResetFlg0(ERFLG0_UNK_10000); } void onFishingKeep() { onEndResetFlg2(ERFLG2_UNK_1); } diff --git a/include/d/d_save.h b/include/d/d_save.h index 9a391845e1..a757606a36 100644 --- a/include/d/d_save.h +++ b/include/d/d_save.h @@ -457,8 +457,8 @@ public: void init(); void addFishCount(u8 i_fishIndex); u16 getFishCount(u8 i_fishIndex) const { return mFishCount[i_fishIndex]; } - u8 getMaxSize(s32 i_sizeIndex) { return mMaxSize[i_sizeIndex]; } - void setMaxSize(s32 i_sizeIndex, u8 i_size) { mMaxSize[i_sizeIndex] = i_size; } + u8 getMaxSize(int i_sizeIndex) const { return mMaxSize[i_sizeIndex]; } + void setMaxSize(int i_sizeIndex, u8 i_size) { mMaxSize[i_sizeIndex] = i_size; } private: /* 0x00 */ u16 mFishCount[16]; |
