IDE Debugger doesn't interpret quads correctly
Posted: Sun Nov 16, 2008 4:12 pm
Hello!
I just discovered this odd bug in PB 4.30 x86 BETA 4.
Doesn't work:
I just discovered this odd bug in PB 4.30 x86 BETA 4.
Doesn't work:
Code: Select all
For n=60 To 20 Step -10
Debug 1<<n
Next
Works:Debugger wrote:268435456
262144
256
1073741824
1048576
Code: Select all
For n=60 To 20 Step -10
quad.q=1<<n
Debug quad
Next
Debugger wrote:1152921504606846976
1125899906842624
1099511627776
1073741824
1048576