Code: Select all
Structure sgxS_GADGET
design.l
EndStructure
Global Dim sgxID.sgxS_GADGET(99)
Global NewList sgxDesign()
sgxID(99 * (0 Or 1))\design = 123 ; <-- this line compiles
sgxID(99 * (0 + 1))\design = sgxDesign() ; <-- this line compiles
sgxID(99 * (0 Or 1))\design = sgxDesign() ; <-- asm error
i don't know if this could be a PB bug, because the " * (.. Or ..) " is not supported by PB afaik. i didn't look in the asm code, because i don't know asm.
maybe someone knows what causes this problem?
no problem with PB 430, but with 431.

