convert chars to signed/unsigned

This commit is contained in:
tildearrow 2021-05-11 15:26:38 -05:00
parent 783d56c72a
commit 8c014802c9
8 changed files with 15 additions and 15 deletions

View file

@ -1,9 +1,9 @@
struct DivPattern {
char data[256][16];
unsigned char data[256][16];
};
struct DivChannelData {
char effectRows;
unsigned char effectRows;
// data goes as follows: data[ROW][TYPE]
// TYPE is:
// 0: note
@ -12,4 +12,4 @@ struct DivChannelData {
// 3: volume
// 4-5+: effect/effect value
std::vector<DivPattern*> data;
};
};