diff --git a/spine-c/src/spine/SkeletonBinary.c b/spine-c/src/spine/SkeletonBinary.c index 9e7a3cd16..7c7543755 100644 --- a/spine-c/src/spine/SkeletonBinary.c +++ b/spine-c/src/spine/SkeletonBinary.c @@ -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) {