Tidy-up and memory savings

This commit is contained in:
stevenhowes
2021-03-19 20:21:39 +00:00
parent 33d210c6bb
commit 3946f245c7
5 changed files with 20 additions and 23 deletions
+6 -5
View File
@@ -1,8 +1,9 @@
#define COMPOSITION_MAX 128
struct CompositionElement {
int Start;
int Note;
int Volume;
int Channel;
int Length;
signed short int Start;
unsigned char Note;
signed char Volume;
unsigned char Channel;
unsigned short int Length;
};