problem with ReadByte() function
Posted: Sat May 03, 2003 10:36 am
if you would read a value superior at 127, the function ReadByte()
take a négative value . 8O
for example reading 128 take -128, cool
my solution :
enjoy
take a négative value . 8O
for example reading 128 take -128, cool

my solution :
Code: Select all
octet = ReadByte()
If octet<0
octet = 128+(128+octet)
EndIf