Oxygen Basic

Programming => Bugs & Feature Requests => Topic started by: Brian Alvarez on November 24, 2018, 09:04:11 PM

Title: Small glitch with negative int value
Post by: Brian Alvarez on November 24, 2018, 09:04:11 PM
I suspect str is casting the object function into a dword, when it is really an int...

Code: [Select]
class glitchy
  int glt[10]
  method constructor()
     glt[5] = -5
  end method
  function func(int d) as int
    print "i am returning: " & str(glt[d])
    return glt[d]
  end function 
end class

new glitchy sss()

print "but i am receiving: " & str(sss.func(5))

int f = sss.func(5)

print "no, it is correct: " & str(f)

output:

Code: [Select]
i am returning: -5

but i am receiving: 4294967291

no, it is correct: -5
Title: Re: Small glitch with negative int value
Post by: Charles Pegge on November 25, 2018, 09:37:28 AM
Brian,
This works correctly on the new o2. Only -5 is seen.
Title: Re: Small glitch with negative int value
Post by: Brian Alvarez on November 25, 2018, 10:11:09 AM
Awesome Charles, I will download it now.

 Thanks!
Title: Re: Small glitch with negative int value
Post by: Brian Alvarez on November 25, 2018, 11:01:01 AM

I can confirm it works fine in this release. :)