[c] Closes #709, Marmelade SDK adds wonky compiler flags that make unsigned types out of signed ones...

This commit is contained in:
badlogic 2016-11-04 15:54:32 +01:00
parent 3a18868d8d
commit 8dbc7c6c1d

View File

@ -97,8 +97,8 @@ static unsigned char readByte (_dataInput* input) {
return *input->cursor++;
}
static char readSByte (_dataInput* input) {
return (char)readByte(input);
static signed char readSByte (_dataInput* input) {
return (signed char)readByte(input);
}
static int readBoolean (_dataInput* input) {