diff options
| author | Asier Núñez <45818936+Asiern@users.noreply.github.com> | 2025-11-16 17:42:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-16 11:42:37 -0500 |
| commit | da46df490d417aa5af57ebecd81149e316356d17 (patch) | |
| tree | 47dc0533fe77cc2deef6e4c9037bf380ae02b22b /include | |
| parent | 67eda440b0c079de4d09416778aa441765356a43 (diff) | |
feat(d_snd_harp_song_mrg): isPlayingHarpRelated and ancestors (#264)
* feat(d_snd_harp_song_mrg): isPlayingHarpRelated and ancestors
* refactor(harp): change field_0x042 type to bool
Updated field_0x042 from u8 to bool to better reflect its binary nature.
Adjusted related logic accordingly.
* refactor: rename fun_80381150 to fn_80381150
- Rename fn_80381150 to match real name
- Reordered functions
* feat: map symbols
* reorder functions
Diffstat (limited to 'include')
| -rw-r--r-- | include/d/snd/d_snd_harp_song_mgr.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/d/snd/d_snd_harp_song_mgr.h b/include/d/snd/d_snd_harp_song_mgr.h index 934ffe0f..84b67e30 100644 --- a/include/d/snd/d_snd_harp_song_mgr.h +++ b/include/d/snd/d_snd_harp_song_mgr.h @@ -2,8 +2,8 @@ #define D_SND_HARP_SONG_MGR_H #include "common.h" -#include "d/snd/d_snd_util.h" #include "d/snd/d_snd_types.h" +#include "d/snd/d_snd_util.h" #include "nw4r/snd/snd_SoundHandle.h" SND_DISPOSER_FORWARD_DECL(dSndHarpSongMgr_c); @@ -31,6 +31,9 @@ private: void shiftFloat2(f32 val); void resetFloatArr1(); void resetFloatArr2(); + bool isContinuousStrumming(); + bool isPlayingHarpRelated(); + bool fn_80381150(); /* 0x010 */ u8 field_0x010; /* 0x011 */ u8 field_0x011; @@ -48,7 +51,7 @@ private: /* 0x03C */ f32 field_0x03C; /* 0x040 */ u8 field_0x040; /* 0x041 */ u8 field_0x041; - /* 0x042 */ u8 field_0x042; + /* 0x042 */ bool field_0x042; /* 0x043 */ u8 field_0x043; /* 0x044 */ u8 field_0x044; /* 0x048 */ UNKWORD field_0x048; |
