core2/code_6DA30.c done, _printbuffer_draw_lette() match

This commit is contained in:
Banjo Kazooie
2023-02-03 13:06:38 -06:00
parent 7a40f9161f
commit dd74091cb7
6 changed files with 93 additions and 73 deletions

View File

@@ -148,7 +148,7 @@ typedef struct {
} N_ALGenericEvent;
typedef struct {
u16 type;
s16 type;
union {
ALMIDIEvent midi;
ALTempoEvent tempo;
@@ -165,6 +165,24 @@ typedef struct {
} msg;
} N_ALEvent;
typedef struct {
u16 type;
union {
ALMIDIEvent midi;
ALTempoEvent tempo;
ALEndEvent end;
N_ALNoteEvent note;
N_ALVolumeEvent vol;
ALSeqpLoopEvent loop;
ALSeqpVolEvent spvol;
ALSeqpPriorityEvent sppriority;
ALSeqpSeqEvent spseq;
ALSeqpBankEvent spbank;
N_ALOscEvent osc;
N_ALGenericEvent generic;
} msg;
} N_ALEvent2;
typedef struct {
ALLink node;