View Single Post
  #2  
Old 01-02-2003, 10:36 AM
fnemo's Avatar
fnemo
Discordant
 
Join Date: Dec 2002
Posts: 354
Default

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
Reply With Quote