mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 07:14:55 +08:00
[c] Closes #709, Marmelade SDK adds wonky compiler flags that make unsigned types out of signed ones...
This commit is contained in:
parent
3a18868d8d
commit
8dbc7c6c1d
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user