convert chars to signed/unsigned
This commit is contained in:
parent
783d56c72a
commit
8c014802c9
8 changed files with 15 additions and 15 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue