diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2023-08-15 15:44:20 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-15 01:44:20 -0400 |
| commit | b8aa2a251e38c4ca31d2e0ab5042a8ea84fd4be5 (patch) | |
| tree | de84ab742daf5200d0f47d7c0f2078b16a30e96c /include | |
| parent | 18d609c1a3006c242d10b12e6937f467c2a1f1eb (diff) | |
Document z_lib Sfx Functions (#1470)
* document lib sfx
* rename functions
Diffstat (limited to 'include')
| -rw-r--r-- | include/functions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions.h b/include/functions.h index 3af169152..1e84a8717 100644 --- a/include/functions.h +++ b/include/functions.h @@ -877,9 +877,9 @@ f32 Math_SmoothStepToDegF(f32* pValue, f32 target, f32 fraction, f32 step, f32 m s16 Math_SmoothStepToS(s16* pValue, s16 target, s16 scale, s16 step, s16 minStep); void Math_ApproachS(s16* pValue, s16 target, s16 scale, s16 step); void Color_RGBA8_Copy(Color_RGBA8* dst, Color_RGBA8* src); -void func_80078884(u16 sfxId); -void func_800788CC(u16 sfxId); -void func_80078914(Vec3f* arg0, u16 sfxId); +void Sfx_PlaySfxCentered(u16 sfxId); +void Sfx_PlaySfxCentered2(u16 sfxId); +void Sfx_PlaySfxAtPos(Vec3f* projectedPos, u16 sfxId); void Health_InitMeter(PlayState* play); void Health_UpdateMeter(PlayState* play); void Health_DrawMeter(PlayState* play); |
