core1/done/audio/n_seqplayer.c done

This commit is contained in:
Banjo Kazooie
2022-10-10 16:53:27 -05:00
parent 9a51651a8e
commit 080fd559fb
3 changed files with 92 additions and 117 deletions

View File

@@ -123,12 +123,12 @@ Acmd *n_alAudioFrame(Acmd *cmdList, s32 *cmdLen,
* Sequence Player stuff
*/
typedef struct {
struct N_ALVoice_s *voice;
N_ALVoice *voice;
} N_ALNoteEvent;
typedef struct {
struct N_ALVoice_s *voice;
N_ALVoice *voice;
ALMicroTime delta;
u8 vol;
} N_ALVolumeEvent;

View File

@@ -10,7 +10,6 @@ extern void func_8033F000(const char *, const char *, int);
#define matching_assert(EX, F, L) assert(EX)
#else
#define LINE(line_num) line_num
#define FILE(file_name) "file_name"
#ifdef __ANSI_CPP__
#define FILE(file_name) # file_name
#else
@@ -25,5 +24,4 @@ extern void func_8033F000(const char *, const char *, int);
#endif
#endif
#endif