as far as i know C++, int8 means integer coded on 8 bits ... that means -127 -> 128 if signed and 0 -> 255 if unsigned. So that maye be the problem.
288 > 128 then the computer do 288 - 128 = 160 . This is still > 128 so ... 160 - 128 = 32 ... you got your model 32. That means that you just need to change the type
Just my 2 copper
|