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,7 +1,7 @@
struct DivSample {
String name;
int length, rate;
char vol, pitch, depth;
signed char vol, pitch;
unsigned char depth;
short* data;
char* data8;
};