Decompile audioStop

This commit is contained in:
Ryan Dwyer
2021-10-18 17:37:20 +10:00
parent 3eb8137335
commit de0021904f
6 changed files with 59 additions and 125 deletions
+2 -1
View File
@@ -439,7 +439,8 @@ enum ALMsg {
/*0x16*/ AL_TREM_OSC_EVT,
/*0x17*/ AL_VIB_OSC_EVT,
/*0x18*/ AL_18_EVT,
/*0x19*/ AL_19_EVT
/*0x19*/ AL_19_EVT,
/*0x400*/ AL_400_EVT = 0x400
};
/*
+7
View File
@@ -158,6 +158,12 @@ typedef struct {
u8 param;
} N_AL19Event;
struct audiohandle;
typedef struct {
struct audiohandle *handle;
} N_AL400Event;
typedef struct {
s16 type;
union {
@@ -174,6 +180,7 @@ typedef struct {
N_ALOscEvent osc;
N_AL18Event evt18;
N_AL19Event evt19;
N_AL400Event evt400;
} msg;
} N_ALEvent;