02-21-2026, 05:34 PM
Running this program is Windows and Linux/macOS gives differing results. It appears that the functions CSRLIN and POS(0) only work correctly in Windows, when using $CONSOLE:ONLY.
In Windows it reports the location as 10,10. In Linux/macOS it reports 1,1
I have found a workaround, so no big deal. I figured I'd bring it to your attention.
Code: (Select All)
'CSRLIN and POS(0) bug
$CONSOLE:ONLY
LOCATE 10, 10
x = CSRLIN: y = POS(0)
PRINT "Cursor position :"; x; ", "; y
In Windows it reports the location as 10,10. In Linux/macOS it reports 1,1
I have found a workaround, so no big deal. I figured I'd bring it to your attention.
2D physics engine https://github.com/mechatronic3000/fzxNGN
QB Pool https://github.com/mechatronic3000/QBPool
QB Pool https://github.com/mechatronic3000/QBPool


