Hi,
Wondering if anyone can give me a hand converting some old BlitzBasic version 1.48 code to BlitzMax.
So far I've converted:
-All comments from ; to '
-AppTitle "title" to Apptitle = "Title"
-Color 255,0,0 to Setcolor 255,0,0
-Dim to Global
-Dim tailX(100) to Dim tailX[100] ........ This is an array right?
-.draw to #draw a Goto Label loop.
Stuck on
- Rect tailx(a),taily(a),10,12,1
I assume Rect is BlitBasic's version of Drawrect. I am however having a problem as Drawrect complains about too many paramaters being passed.
Any help appreciated...
Wondering if anyone can give me a hand converting some old BlitzBasic version 1.48 code to BlitzMax.
So far I've converted:
-All comments from ; to '
-AppTitle "title" to Apptitle = "Title"
-Color 255,0,0 to Setcolor 255,0,0
-Dim to Global
-Dim tailX(100) to Dim tailX[100] ........ This is an array right?
-.draw to #draw a Goto Label loop.
Stuck on
- Rect tailx(a),taily(a),10,12,1
I assume Rect is BlitBasic's version of Drawrect. I am however having a problem as Drawrect complains about too many paramaters being passed.
Any help appreciated...