Merge struct audiohandle and struct sndstate

This commit is contained in:
Ryan Dwyer
2021-11-10 22:28:22 +10:00
parent ecc4493e8c
commit 80de3d4209
21 changed files with 185 additions and 207 deletions
+1 -8
View File
@@ -159,16 +159,10 @@ typedef struct {
} N_AL19Event;
typedef struct {
struct audiohandle *handle;
struct sndstate *sndstate;
u32 data;
} N_ALGenericEvent;
struct audiohandle;
typedef struct {
struct audiohandle *handle;
} N_AL400Event;
typedef struct {
s16 type;
union {
@@ -185,7 +179,6 @@ typedef struct {
N_ALOscEvent osc;
N_AL18Event evt18;
N_AL19Event evt19;
N_AL400Event evt400;
N_ALGenericEvent generic;
} msg;
} N_ALEvent;