diff options
| author | robojumper <robojumper@gmail.com> | 2025-06-07 16:38:16 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-06-07 16:38:16 +0200 |
| commit | e78895aa3597cd7bdb77534c07a8cac63fbbba57 (patch) | |
| tree | 54b59418c2bb39df70a158938bbf9f7e19e937f8 /include | |
| parent | 5b896bb471765ced514a8f9f188775749cb974d5 (diff) | |
rename
Diffstat (limited to 'include')
| -rw-r--r-- | include/toBeSorted/actor_info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/toBeSorted/actor_info.h b/include/toBeSorted/actor_info.h index d6843009..053a400c 100644 --- a/include/toBeSorted/actor_info.h +++ b/include/toBeSorted/actor_info.h @@ -4,7 +4,7 @@ #include "common.h" // TODO: Expand when we figure out what the other entries have in common -enum SoundSourceCategory_e { +enum SoundSourceType_e { SND_SOURCE_PLAYER = 0, SND_SOURCE_PLAYER_HEAD = 1, SND_SOURCE_NET = 2, @@ -40,7 +40,7 @@ struct ActorInfo { /* 0x04 */ u16 profileId; /* 0x06 */ u16 profileId2; /* 0x08 */ u16 fiTextEntryId; // also used for kill counters - /* 0x0A */ s8 soundSourceCategory; + /* 0x0A */ s8 soundSourceType; /* 0x0B */ u8 subtype; }; @@ -50,6 +50,6 @@ u16 getProfileId2ForName(const char *name); const char *getNameForProfileId(u32 profileId); const char *getActorName(const ActorInfo *actorInfo); const ActorInfo *getActorInfoByProfileAndSubtype(u32 profileId, u32 subtype); -s32 getSoundSourceCategoryForName(const char *name); +s32 getSoundSourceTypeForName(const char *name); #endif |
