summaryrefslogtreecommitdiff
path: root/src/code
diff options
context:
space:
mode:
authorTharo <17233964+Thar0@users.noreply.github.com>2020-11-16 08:31:08 +0000
committerGitHub <noreply@github.com>2020-11-16 03:31:08 -0500
commit93389da2dc6541cb467a0e1c04c4181e2ac27cf0 (patch)
treee577bc0d267a97bf2d1d61b148b90a1b51105178 /src/code
parent3d21a38f0897c2376ffcc90a8c3203e2dce1c0e7 (diff)
Fix prototype for Audio_PlaySoundGeneral and fix related types in structs (#481)
Diffstat (limited to 'src/code')
-rw-r--r--src/code/code_800F7260.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/code_800F7260.c b/src/code/code_800F7260.c
index 31ba7bdf0..952a7536b 100644
--- a/src/code/code_800F7260.c
+++ b/src/code/code_800F7260.c
@@ -6,9 +6,9 @@ typedef struct {
/* 0x00 */ u16 sfxId;
/* 0x04 */ Vec3f* pos;
/* 0x08 */ u8 unk_8;
- /* 0x0C */ u32* unk_C;
- /* 0x10 */ u32* unk_10;
- /* 0x14 */ u32* unk_14;
+ /* 0x0C */ f32* unk_C;
+ /* 0x10 */ f32* unk_10;
+ /* 0x14 */ f32* unk_14;
} Struct_800F738C; // size = 0x18
typedef struct {
@@ -125,7 +125,7 @@ void func_800F731C(u8 arg0) {
}
}
-void Audio_PlaySoundGeneral(u16 sfxId, Vec3f* a1, u8 a2, u32* a3, u32* a4, u32* a5) {
+void Audio_PlaySoundGeneral(u16 sfxId, Vec3f* a1, u8 a2, f32* a3, f32* a4, f32* a5) {
u8 i;
Struct_800F738C* phi_v0;